import { Grid } from '@mui/material'; const GridItem = ({ children }) => { return ( {children} ); }; export default GridItem;