aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Loading.tsx
blob: 50832147de2dd2280a91b54258470b394590f3e2 (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 { RingLoader } from "react-spinners";

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

function Loading() {
    return <div>
        <HeaderBar title={"Loading..."}/>
        <div css={{display: "flex", justifyContent: "center"}}>
            <RingLoader color="white"/>
        </div>
    </div>
}

export default Loading;