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

GridItem.tsx 271B

123456789101112131415
  1. import { Grid } from '@mui/material';
  2. interface Props {
  3. children: JSX.Element
  4. }
  5. const GridItem: React.FC<Props> = ({ children }) => {
  6. return (
  7. <Grid item md={4} sm={6} xs={12} sx={{ mb: '100px' }}>
  8. {children}
  9. </Grid>
  10. );
  11. };
  12. export default GridItem;