UNPKG
express-react-boilerplate
Version:
latest (4.2.1)
4.2.1
4.2.0
4.1.1
4.1.0
4.0.0
3.0.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.10.1
1.10.0
1.9.4
1.9.3
1.9.2
1.9.1
1.9.0
1.8.1
1.8.0
1.7.4
1.7.3
1.7.0
1.6.0
Express react boilerplate
github.com/htdangkhoa/erb
htdangkhoa/erb
express-react-boilerplate
/
src
/
client
/
components
/
Loading
/
index.js
12 lines
(9 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
{
RingLoader
}
from
'react-spinners'
;
import
styles
from
'./styles.scss'
;
const
Loading
= (
) => (
<
div
className
=
{styles.app__loading}
>
<
RingLoader
/>
</
div
>
);
export
default
Loading
;