93 lines
2.6 KiB
JavaScript
93 lines
2.6 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import ListSubheader from '@mui/material/ListSubheader';
|
|
import List from '@mui/material/List';
|
|
import ListItemButton from '@mui/material/ListItemButton';
|
|
import ListItemIcon from '@mui/material/ListItemIcon';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import Collapse from '@mui/material/Collapse';
|
|
import InboxIcon from '@mui/icons-material/MoveToInbox';
|
|
import DraftsIcon from '@mui/icons-material/Drafts';
|
|
import SendIcon from '@mui/icons-material/Send';
|
|
import ExpandLess from '@mui/icons-material/ExpandLess';
|
|
import ExpandMore from '@mui/icons-material/ExpandMore';
|
|
import StarBorder from '@mui/icons-material/StarBorder';
|
|
|
|
export default function NestedList() {
|
|
const [open, setOpen] = React.useState(true);
|
|
|
|
const handleClick = () => {
|
|
setOpen(!open);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Nested List
|
|
</Typography>
|
|
|
|
<List
|
|
sx={{ width: '100%', maxWidth: 360, bgcolor: 'background.paper' }}
|
|
component="nav"
|
|
aria-labelledby="nested-list-subheader"
|
|
subheader={
|
|
<ListSubheader component="div" id="nested-list-subheader">
|
|
Nested List Items
|
|
</ListSubheader>
|
|
}
|
|
className="bg-black"
|
|
>
|
|
<ListItemButton>
|
|
<ListItemIcon>
|
|
<SendIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Sent mail" />
|
|
</ListItemButton>
|
|
|
|
<ListItemButton>
|
|
<ListItemIcon>
|
|
<DraftsIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Drafts" />
|
|
</ListItemButton>
|
|
|
|
<ListItemButton onClick={handleClick}>
|
|
<ListItemIcon>
|
|
<InboxIcon />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Inbox" />
|
|
{open ? <ExpandLess /> : <ExpandMore />}
|
|
</ListItemButton>
|
|
|
|
<Collapse in={open} timeout="auto" unmountOnExit>
|
|
<List component="div" disablePadding>
|
|
<ListItemButton sx={{ pl: 4 }}>
|
|
<ListItemIcon>
|
|
<StarBorder />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Starred" />
|
|
</ListItemButton>
|
|
</List>
|
|
</Collapse>
|
|
</List>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|