12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
import { Outlet } from 'react-router-dom';
|
|
import { Box } from '@mui/material';
|
|
|
|
// Used by auth + maintenance pages — full-bleed, no shell.
|
|
export default function MinimalLayout() {
|
|
return (
|
|
<Box sx={{ minHeight: '100vh', bgcolor: 'background.default' }}>
|
|
<Outlet />
|
|
</Box>
|
|
);
|
|
}
|