import * as React from 'react'; import List from '@mui/joy/List'; import ListItem from '@mui/joy/ListItem'; import ListSubheader from '@mui/joy/ListSubheader'; import ListItemButton from '@mui/joy/ListItemButton'; import Typography from '@mui/joy/Typography'; import Switch from '@mui/joy/Switch'; export default function NestedList() { const [small, setSmall] = React.useState(false); return (
setSmall(event.target.checked)} endDecorator={ Toggle small nested list } sx={{ mb: 2 }} /> Category 1 Subitem 1 Subitem 2 Category 2 Subitem 1 Subitem 2
); }