16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
import { Box } from '@mui/material';
|
|
|
|
export default () => (
|
|
<Box
|
|
sx={{
|
|
width: '100%',
|
|
height: '90vh',
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
loading...
|
|
</Box>
|
|
);
|