blob: 198b99338098974e6f1510afa030ca1538eef102 [file] [log] [blame]
import { CircularProgress, Container } from '@material-ui/core';
import React from 'react';
export default function LoadingPage() {
return <Container style={{ textAlign: "center" }}>
<CircularProgress style={{ margin: 32 }} />
</Container>
}