Can you help me understaing why the white shirts images go next line and not below the blue ones?
I'm using material ui for reactjs:
<Grid item xs={12} md={6}>
<GridList cellHeight={100} cols={4} rows={2}>
<GridListTile rows={2} cols={2}>
<img src="https://..." />
</GridListTile>
<GridListTile>
<img src="https://..." />
</GridListTile>
<GridListTile>
<img src="https://..." />
</GridListTile>
<GridListTile>
<img src="https://..." />
</GridListTile>
<GridListTile>
<img src="https://..." />
</GridListTile>
</GridList>
</Grid>
What am I doing wrong?
EDIT: for clearness this is the searched result:
And this is the code snippet: