aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Loading.tsx
blob: 48dcdbc273133ad9ef143fdd6e42e07fbc86e299 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;