15 lines
368 B
Plaintext
15 lines
368 B
Plaintext
|
|
<List sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}>
|
||
|
|
{[1, 2, 3].map((value) => (
|
||
|
|
<ListItem
|
||
|
|
key={value}
|
||
|
|
disableGutters
|
||
|
|
secondaryAction={
|
||
|
|
<IconButton aria-label="comment">
|
||
|
|
<CommentIcon />
|
||
|
|
</IconButton>
|
||
|
|
}
|
||
|
|
>
|
||
|
|
<ListItemText primary={`Line item ${value}`} />
|
||
|
|
</ListItem>
|
||
|
|
))}
|
||
|
|
</List>
|