UNPKG
@mattburlage/react-file-viewer
Version:
latest (1.1.1)
1.1.1
Extendable file viewer for web
github.com/plangrid/react-file-viewer
plangrid/react-file-viewer
@mattburlage/react-file-viewer
/
src
/
components
/
loading.jsx
14 lines
(9 loc)
•
229 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2017 PlanGrid, Inc.
import
React
from
'react'
;
import
'styles/loading.scss'
;
const
Loading
= (
) => (
<
div
className
=
"loading-container"
>
<
span
className
=
"loading"
/>
</
div
>
);
export
default
Loading
;