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 281B

123456789101112
  1. import { Box } from '@mui/system';
  2. import { FC, ReactNode } from 'react';
  3. interface Props {
  4. children: ReactNode;
  5. }
  6. const PageWrapper: FC<Props> = ({ children }) => {
  7. return <Box sx={{ py: 10, height: '100%', width: '100%' }}>{children}</Box>;
  8. };
  9. export default PageWrapper;