Files
user-front/src/layouts/FullPageLayout.jsx
2023-07-10 10:48:53 +03:30

22 lines
394 B
JavaScript

import { Stack } from "@mui/material";
const FullPageLayout = (props) => {
return (
<Stack
spacing={props?.spacing}
direction={props?.direction}
sx={{
width: "100%",
height: "100%",
overflowY: "scroll",
overflowX: "scroll",
...props?.sx,
}}
>
{props.children}
</Stack>
);
};
export default FullPageLayout;