index.js 147 B

12345
  1. import { Paper, Box } from '@mui/material';
  2. const Content = ({ children }) => <Box className="Content">{children}</Box>;
  3. export default Content;