Browse
For agents
About
HubSpot All-In-One Marketing – Forms, Popups, Live Chat
/
11.3.69
HubSpot All-In-One Marketing – Forms, Popups, Live Chat
v11.3.69
Switch version
11.3.73
11.3.71
11.3.70
11.3.69
11.3.64
11.3.65
11.3.62
11.3.61
11.3.56
11.3.58
11.0.31
11.0.52
11.0.54
11.0.56
11.0.58
11.0.7
11.1.10
11.1.11
11.1.13
11.1.14
11.1.15
11.1.2
11.1.20
11.1.21
11.1.22
All 72 releases
Overview
Code
leadin
/
scripts
/
shared
/
Common
/
LoadingBlock.tsx
LoadingBlock.tsx
in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.3.69, at scripts/shared/Common/LoadingBlock.tsx
13 lines
341 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
React
from
'
react
'
;
2
import
HubspotWrapper
from
'
./HubspotWrapper
'
;
3
import
UISpinner
from
'
../UIComponents/UISpinner
'
;
4
import
{
pluginPath
}
from
'
../../constants/leadinConfig
'
;
5
6
export
default
function
LoadingBlock
(
)
{
7
return
(
8
<
HubspotWrapper
pluginPath
=
{
pluginPath
}
>
9
<
UISpinner
size
=
{
50
}
/>
10
</
HubspotWrapper
>
11
)
;
12
}
13