summaryrefslogtreecommitdiff
path: root/src/components/Loading.js
diff options
context:
space:
mode:
authorHaishan <[email protected]>2018-10-20 20:32:02 +0800
committerHaishan <[email protected]>2018-10-20 20:32:02 +0800
commit133b29c9dac2209a3c88c3289f84ff709d404392 (patch)
treee023785cc82db732c64328a5d99938992eceecfd /src/components/Loading.js
first commit
Diffstat (limited to 'src/components/Loading.js')
-rw-r--r--src/components/Loading.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/Loading.js b/src/components/Loading.js
new file mode 100644
index 0000000..1b8d373
--- /dev/null
+++ b/src/components/Loading.js
@@ -0,0 +1,14 @@
+import React from 'react';
+
+import style from './Loading.module.scss';
+
+const Loading = () => {
+ return (
+ <div className={style.loading}>
+ <div className={style.left + ' ' + style.circle} />
+ <div className={style.right + ' ' + style.circle} />
+ </div>
+ );
+};
+
+export default Loading;