I currently have the following code snippet:
<div style={{ flexGrow: 1 }}>
<Grid container spacing={0} style={{ width: '100%' }}>
<Grid item xs={12} sm={6}>
Left Side
</Grid>
<Grid item xs={12} sm={6}>
Right Side
</Grid>
</Grid>
</div>
Upon inspection, I noticed that the generated styles only show MuiGrid-item
without any indication of size. Can you help me identify what might be going wrong in this scenario?