blob: 275822540a8a5aafef796f9a802c21edef7158bd (
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 { 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;
 |