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