import * as React from 'react'; import Paper from '@mui/material/Paper'; import Box from '@mui/material/Box'; import Grid from '@mui/material/Grid'; import { styled } from '@mui/material/styles'; // styled(Grid) should work with nested grids. const StyledGrid = styled(Grid)({}); export default function StyledGridTest() { return ( Item 1 Item 2.1 Item 2.2 Item 3 ); }