/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/data/material/getting-started/templates/dashboard/components/SideMenu.js
86 строк
2 KB
Brijesh Bittu
[code-infra] Remove React import requirement for jsx (#47146)
29 окт 2025, 20:55
Не верифицирован
29 окт 2025, 20:55
6c9e82f
Код
Авторство
О чём код?
import { styled } from '@mui/material/styles'; import Avatar from '@mui/material/Avatar'; import MuiDrawer, { drawerClasses } from '@mui/material/Drawer'; import Box from '@mui/material/Box'; import Divider from '@mui/material/Divider'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import SelectContent from './SelectContent'; import MenuContent from './MenuContent'; import CardAlert from './CardAlert'; import OptionsMenu from './OptionsMenu'; const drawerWidth = 240; const Drawer = styled(MuiDrawer)({ width: drawerWidth, flexShrink: 0, boxSizing: 'border-box', mt: 10, [`& .${drawerClasses.paper}`]: { width: drawerWidth, boxSizing: 'border-box', }, }); export default function SideMenu() { return ( <Drawer variant="permanent" sx={{ display: { xs: 'none', md: 'block' }, [`& .${drawerClasses.paper}`]: { backgroundColor: 'background.paper', }, }} > <Box sx={{ display: 'flex', mt: 'calc(var(--template-frame-height, 0px) + 4px)', p: 1.5, }} > <SelectContent /> </Box> <Divider /> <Box sx={{ overflow: 'auto', height: '100%', display: 'flex', flexDirection: 'column', }} > <MenuContent /> <CardAlert /> </Box> <Stack direction="row" sx={{ p: 2, gap: 1, alignItems: 'center', borderTop: '1px solid', borderColor: 'divider', }} > <Avatar sizes="small" alt="Riley Carter" src="/static/images/avatar/7.jpg" sx={{ width: 36, height: 36 }} /> <Box sx={{ mr: 'auto' }}> <Typography variant="body2" sx={{ fontWeight: 500, lineHeight: '16px' }}> Riley Carter </Typography> <Typography variant="caption" sx={{ color: 'text.secondary' }}> riley@email.com </Typography> </Box> <OptionsMenu /> </Stack> </Drawer> ); }