Files
jamespong14205/task1/project/003_src/client/components/Loading/index.js
2025-02-01 02:02:25 +08:00

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>
);