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

CardContainer.jsx 450B

123456789101112131415161718192021222324
  1. import { Box } from '@mui/system';
  2. const CardContainer = ({ children }) => {
  3. return (
  4. <Box
  5. sx={{
  6. ml: { md: 2 },
  7. mt: { xs: 5, md: 0 },
  8. display: 'flex',
  9. flexDirection: {
  10. xs: 'column',
  11. sm: 'row',
  12. lg: 'column',
  13. },
  14. justifyContent: { sm: 'space-between' },
  15. flexWrap: 'wrap',
  16. }}
  17. >
  18. {children}
  19. </Box>
  20. );
  21. };
  22. export default CardContainer;