aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Loading.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-12-14 19:18:19 +0000
committerGravatar GitHub <[email protected]>2020-12-14 19:18:19 +0000
commita1963eb56f9682a6315a06a075d09314822dbfd9 (patch)
treed0856e1326516447a33951de623770787f6ef996 /src/components/Loading.tsx
parentMerge pull request #29 from python-discord/dependabot/npm_and_yarn/ini-1.3.8 (diff)
parentSimplify Axios client baseURL definition (diff)
Merge pull request #30 from python-discord/ks123/discovery
Diffstat (limited to 'src/components/Loading.tsx')
-rw-r--r--src/components/Loading.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/components/Loading.tsx b/src/components/Loading.tsx
new file mode 100644
index 0000000..48dcdbc
--- /dev/null
+++ b/src/components/Loading.tsx
@@ -0,0 +1,17 @@
+/** @jsx jsx */
+import { jsx } from "@emotion/core";
+
+import { HashLoader } from "react-spinners";
+
+import HeaderBar from "../components/HeaderBar";
+
+function Loading() {
+ return <div>
+ <HeaderBar title={"Loading..."}/>
+ <div css={{display: "flex", justifyContent: "center"}}>
+ <HashLoader color="white"/>
+ </div>
+ </div>
+}
+
+export default Loading;