12 lines
414 B
Plaintext
12 lines
414 B
Plaintext
|
|
<Masonry columns={3} spacing={2}>
|
||
|
|
{heights.map((height, index) => (
|
||
|
|
<Paper key={index}>
|
||
|
|
<StyledAccordion sx={{ minHeight: height }}>
|
||
|
|
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
||
|
|
<Typography component="span">Accordion {index + 1}</Typography>
|
||
|
|
</AccordionSummary>
|
||
|
|
<AccordionDetails>Contents</AccordionDetails>
|
||
|
|
</StyledAccordion>
|
||
|
|
</Paper>
|
||
|
|
))}
|
||
|
|
</Masonry>
|