aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Loading.tsx
blob: 8dd5474959174c052d8207e5635b439999796bb5 (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/react";

import { PropagateLoader } from "react-spinners";

import HeaderBar from "../components/HeaderBar";

function Loading(): JSX.Element {
    return <div>
        <HeaderBar title={"Loading..."}/>
        <div css={{display: "flex", justifyContent: "center", paddingTop: "40px"}}>
            <PropagateLoader color="white"/>
        </div>
    </div>;
}

export default Loading;