stretch grid column to fit page mui

Solutions on MaxInterview for stretch grid column to fit page mui by the best coders in the world

showing results for - "stretch grid column to fit page mui"
Isabelle
19 May 2018
1return (
2  	<Grid container direction={"row"}>
3            <Grid item style={{width: '500px'}}></Grid>
4			<Grid item xs></Grid> 
5			// the bottom one will stretch
6	</Grid>
7)
8