11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
|
|
import Box from '@mui/material/Box';
|
||
|
|
import LinearProgress from '@mui/material/LinearProgress';
|
||
|
|
|
||
|
|
export default function LinearIndeterminate() {
|
||
|
|
return (
|
||
|
|
<Box sx={{ width: '100%' }}>
|
||
|
|
<LinearProgress />
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|