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