On the other hand, to place two containers side by side, you can use the Grid
mui component
<Grid container spacing={2}> <Grid item xs={6}> <Item>xs=6</Item> </Grid> <Grid item xs={6}> <Item>xs=6</Item> </Grid> </Grid>
Generate a container Result output