11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
|
|
import CircularProgress from '@mui/material/CircularProgress';
|
||
|
|
import Box from '@mui/material/Box';
|
||
|
|
|
||
|
|
export default function CircularIndeterminate() {
|
||
|
|
return (
|
||
|
|
<Box sx={{ display: 'flex' }}>
|
||
|
|
<CircularProgress />
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|