You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PageWrapper.tsx 189B

1234567
  1. import { Box } from '@mui/system';
  2. const PageWrapper = ({ children }) => {
  3. return <Box sx={{ py: 10, height: '100%', width: '100%' }}>{children}</Box>;
  4. };
  5. export default PageWrapper;