import { SidebarNodeProps } from './Sidebar'; import { SidebarGroup, SidebarCollapsible, SidebarLink } from './index'; export const SidebarSection = ({ route, ...rest }: SidebarNodeProps) => { // If the section or group is hidden, or has no content, we should not render it if (route.hidden || !route.children?.length) { return null; } return (
{route.children.map(child => child.type === 'page' ? ( {child.sidebarTitle || child.name} ) : ( ) )}
); };