colonne de grille extensible pour s'adapter à la page MUI

return (
  	<Grid container direction={"row"}>
            <Grid item style={{width: '500px'}}></Grid>
			<Grid item xs></Grid> 
			// the bottom one will stretch
	</Grid>
)
Kezza23