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