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
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
import Box from '@mui/material/Box';
|
|
import List from '@mui/material/List';
|
|
import ListItem from '@mui/material/ListItem';
|
|
import ListItemButton from '@mui/material/ListItemButton';
|
|
import ListItemIcon from '@mui/material/ListItemIcon';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import Divider from '@mui/material/Divider';
|
|
import InboxIcon from '@mui/icons-material/Inbox';
|
|
import DraftsIcon from '@mui/icons-material/Drafts';
|
|
|
|
export default function BasicList() {
|
|
return (
|
|
<Box sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}>
|
|
<nav aria-label="main mailbox folders">
|
|
<List>
|
|
<ListItem disablePadding>
|
|
<ListItemButton>
|
|
<ListItemIcon>
|
|
<InboxIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Inbox" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
<ListItem disablePadding>
|
|
<ListItemButton>
|
|
<ListItemIcon>
|
|
<DraftsIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Drafts" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
</List>
|
|
</nav>
|
|
<Divider />
|
|
<nav aria-label="secondary mailbox folders">
|
|
<List>
|
|
<ListItem disablePadding>
|
|
<ListItemButton>
|
|
<ListItemText primary="Trash" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
<ListItem disablePadding>
|
|
<ListItemButton component="a" href="#simple-list">
|
|
<ListItemText primary="Spam" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
</List>
|
|
</nav>
|
|
</Box>
|
|
);
|
|
}
|