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

PageDescription.tsx 323B

123456789101112
  1. import { Typography } from '@mui/material';
  2. import { Box } from '@mui/system';
  3. const PageDescription = ({ description }) => {
  4. return (
  5. <Box sx={{ ml: { xs: 2, md: 12 }, my: 3 }}>
  6. <Typography sx={{ fontSize: 20 }}>{description}</Typography>
  7. </Box>
  8. );
  9. };
  10. export default PageDescription;