import { memo } from 'react'; import Stack from '@mui/material/Stack'; // import { NavSectionProps, NavListProps, NavConfigProps } from '../types'; import { navMiniConfig } from '../config'; import NavList from './nav-list'; // ---------------------------------------------------------------------- function NavSectionMini({ data, config, sx, ...other }: NavSectionProps) { return ( {data.map((group, index) => ( ))} ); } export default memo(NavSectionMini); // ---------------------------------------------------------------------- type GroupProps = { items: NavListProps[]; config: NavConfigProps; }; function Group({ items, config }: GroupProps) { return ( <> {items.map((list) => ( ))} ); }