I am going to break a line of grid item like this. As you can see the image, rest space of grid should be empty.
<Grid container spacing={3}
<Grid item xs={12}>
"Grid Item xs={12}"
</Grid>
<Grid item xs={4}>
"Grid Item xs={4}"
</Grid>
// empty space
<Grid item xs={12}>
"Grid Item xs={12}"
</Grid>
</Grid>
Should I use inner grid container
?
Or should I use display flex
?