Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
78 lines
2.5 KiB
JavaScript
78 lines
2.5 KiB
JavaScript
import * as React from 'react';
|
|
import List from '@mui/material/List';
|
|
import ListItem from '@mui/material/ListItem';
|
|
import Divider from '@mui/material/Divider';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import ListItemAvatar from '@mui/material/ListItemAvatar';
|
|
import Avatar from '@mui/material/Avatar';
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
export default function AlignItemsList() {
|
|
return (
|
|
<List sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}>
|
|
<ListItem alignItems="flex-start">
|
|
<ListItemAvatar>
|
|
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" />
|
|
</ListItemAvatar>
|
|
<ListItemText
|
|
primary="Brunch this weekend?"
|
|
secondary={
|
|
<React.Fragment>
|
|
<Typography
|
|
component="span"
|
|
variant="body2"
|
|
sx={{ color: 'text.primary', display: 'inline' }}
|
|
>
|
|
Ali Connors
|
|
</Typography>
|
|
{" — I'll be in your neighborhood doing errands this…"}
|
|
</React.Fragment>
|
|
}
|
|
/>
|
|
</ListItem>
|
|
<Divider variant="inset" component="li" />
|
|
<ListItem alignItems="flex-start">
|
|
<ListItemAvatar>
|
|
<Avatar alt="Travis Howard" src="/static/images/avatar/2.jpg" />
|
|
</ListItemAvatar>
|
|
<ListItemText
|
|
primary="Summer BBQ"
|
|
secondary={
|
|
<React.Fragment>
|
|
<Typography
|
|
component="span"
|
|
variant="body2"
|
|
sx={{ color: 'text.primary', display: 'inline' }}
|
|
>
|
|
to Scott, Alex, Jennifer
|
|
</Typography>
|
|
{" — Wish I could come, but I'm out of town this…"}
|
|
</React.Fragment>
|
|
}
|
|
/>
|
|
</ListItem>
|
|
<Divider variant="inset" component="li" />
|
|
<ListItem alignItems="flex-start">
|
|
<ListItemAvatar>
|
|
<Avatar alt="Cindy Baker" src="/static/images/avatar/3.jpg" />
|
|
</ListItemAvatar>
|
|
<ListItemText
|
|
primary="Oui Oui"
|
|
secondary={
|
|
<React.Fragment>
|
|
<Typography
|
|
component="span"
|
|
variant="body2"
|
|
sx={{ color: 'text.primary', display: 'inline' }}
|
|
>
|
|
Sandra Adams
|
|
</Typography>
|
|
{' — Do you have Paris recommendations? Have you ever…'}
|
|
</React.Fragment>
|
|
}
|
|
/>
|
|
</ListItem>
|
|
</List>
|
|
);
|
|
}
|