How to make the first grid item the same height as the second grid item?
    <Grid container spacing={2}>
      <Grid item xs={6}>
        <div>
          {[...Array(20).keys()].map(item => (
            <div style={styles.container}>{item}</div>
          ))}
        </div>
      </Grid>
      <Grid item xs={6}>
        <div
          style={{
            height: Math.floor(Math.random() * 500 + 50),
            ...styles.container
          }}
        />
      </Grid>
    </Grid>
Codesandbox example https://codesandbox.io/s/st-of-grid-stretch-sscuj

