16 lines
311 B
JavaScript
16 lines
311 B
JavaScript
import Box from '@mui/material/Box'
|
|
import CircularProgress from '@mui/material/CircularProgress'
|
|
|
|
export function Loading() {
|
|
return (
|
|
<Box
|
|
display='flex'
|
|
justifyContent='center'
|
|
alignItems='center'
|
|
height='100vh'
|
|
>
|
|
<CircularProgress color='warning' />
|
|
</Box>
|
|
)
|
|
}
|