import Box from '@mui/material/Box';
import Portal from '@mui/material/Portal';
import LinearProgress from '@mui/material/LinearProgress';
// ----------------------------------------------------------------------
export function LoadingScreen({ portal, sx, ...other }) {
const content = (
);
if (portal) {
return {content};
}
return content;
}