| 123456789101112 |
- import { Box } from '@mui/system';
- import { FC, ReactNode } from 'react';
-
- interface Props {
- children: ReactNode;
- }
-
- const PageWrapper: FC<Props> = ({ children }) => {
- return <Box sx={{ py: 10, height: '100%', width: '100%' }}>{children}</Box>;
- };
-
- export default PageWrapper;
|