7 lines
170 B
Plaintext
7 lines
170 B
Plaintext
|
|
<Masonry columns={{ xs: 3, sm: 4 }} spacing={2}>
|
||
|
|
{heights.map((height, index) => (
|
||
|
|
<Item key={index} sx={{ height }}>
|
||
|
|
{index + 1}
|
||
|
|
</Item>
|
||
|
|
))}
|
||
|
|
</Masonry>
|