source: src/components/nav-section/mini/nav-section-mini.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.0 KB
Line 
1import { memo } from 'react';
2import Stack from '@mui/material/Stack';
3//
4import { NavSectionProps, NavListProps, NavConfigProps } from '../types';
5import { navMiniConfig } from '../config';
6import NavList from './nav-list';
7
8// ----------------------------------------------------------------------
9
10function NavSectionMini({ data, config, sx, ...other }: NavSectionProps) {
11 return (
12 <Stack sx={sx} {...other}>
13 {data.map((group, index) => (
14 <Group key={group.subheader || index} items={group.items} config={navMiniConfig(config)} />
15 ))}
16 </Stack>
17 );
18}
19
20export default memo(NavSectionMini);
21
22// ----------------------------------------------------------------------
23
24type GroupProps = {
25 items: NavListProps[];
26 config: NavConfigProps;
27};
28
29function Group({ items, config }: GroupProps) {
30 return (
31 <>
32 {items.map((list) => (
33 <NavList
34 key={list.title + list.path}
35 data={list}
36 depth={1}
37 hasChild={!!list.children}
38 config={config}
39 />
40 ))}
41 </>
42 );
43}
Note: See TracBrowser for help on using the repository browser.