summaryrefslogtreecommitdiff
path: root/web/src/views/LoadingPage/LoadingPage.tsx
blob: 4a334d450c7b6862578757c1c0fea0e0a8449aa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";
import ReactLoading from "react-loading";
import { Typography, Grid } from "@material-ui/core";

export default function () {
    return (
        <Grid container alignItems="center" justify="center" style={{ minHeight: "100vh" }}>
            <Grid item style={{ textAlign: "center", display: "inline-block" }}>
                <ReactLoading width={64} height={64} color="black" type="bars" />
                <Typography>Loading...</Typography>
            </Grid>
        </Grid>
    );
}