您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PageWrapper.jsx 187B

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;