36 lines
898 B
JavaScript
36 lines
898 B
JavaScript
|
|
import List from '@mui/joy/List';
|
||
|
|
import ListItem from '@mui/joy/ListItem';
|
||
|
|
import ListItemDecorator from '@mui/joy/ListItemDecorator';
|
||
|
|
import ListItemButton from '@mui/joy/ListItemButton';
|
||
|
|
import Home from '@mui/icons-material/Home';
|
||
|
|
import Apps from '@mui/icons-material/Apps';
|
||
|
|
|
||
|
|
export default function SelectedList() {
|
||
|
|
return (
|
||
|
|
<List sx={{ maxWidth: 320 }}>
|
||
|
|
<ListItem>
|
||
|
|
<ListItemButton selected>
|
||
|
|
<ListItemDecorator>
|
||
|
|
<Home />
|
||
|
|
</ListItemDecorator>
|
||
|
|
Home
|
||
|
|
</ListItemButton>
|
||
|
|
</ListItem>
|
||
|
|
<ListItem>
|
||
|
|
<ListItemButton>
|
||
|
|
<ListItemDecorator>
|
||
|
|
<Apps />
|
||
|
|
</ListItemDecorator>
|
||
|
|
Apps
|
||
|
|
</ListItemButton>
|
||
|
|
</ListItem>
|
||
|
|
<ListItem>
|
||
|
|
<ListItemButton>
|
||
|
|
<ListItemDecorator />
|
||
|
|
Settings
|
||
|
|
</ListItemButton>
|
||
|
|
</ListItem>
|
||
|
|
</List>
|
||
|
|
);
|
||
|
|
}
|