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.

ContentContainer.tsx 403B

123456789101112131415161718
  1. import { Box } from '@mui/system';
  2. const ContentContainer = ({ children }) => {
  3. return (
  4. <Box
  5. sx={{
  6. display: 'flex',
  7. flexDirection: { xs: 'column', md: 'row' },
  8. mr: { xs: 2, md: 12 },
  9. ml: { xs: 2, md: 12 },
  10. }}
  11. >
  12. {children}
  13. </Box>
  14. );
  15. };
  16. export default ContentContainer;