import { LinearProgress } from '@mui/material'; import { styled } from '@mui/material/styles'; const LoaderWrapper = styled('div')(({ theme }) => ({ position: 'fixed', top: 0, left: 0, zIndex: 2001, width: '100%', '& > * + *': { marginTop: theme.spacing(2) } })); function Loader() { return ( ); } export { Loader };