I am trying to display 2 charts side by side at the centre of the page but I'm unable to do so. I am relatively new to material UI.
<Grid container spacing={2} >
<Grid item sm={6} >
<Nifty50/>
</Grid>
<Grid item sm={6} >
<Sensex/>
</Grid>
</Grid>
Any help is appreciated. Thanks.