blob: 8454366e203c0b1139d3fcb18df11fd3f69f15bc (
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() {
return <div>
<HeaderBar title={"Loading..."}/>
<div css={{display: "flex", justifyContent: "center", paddingTop: "40px"}}>
<PropagateLoader color="white"/>
</div>
</div>
}
export default Loading;
|