import { Heading } from "../Typography/Heading"; export interface SidebarSectionProps { label: string; subheader?: string; children: React.ReactNode; } export const SidebarSection = ({ label: title, children, }: SidebarSectionProps) => (
{title}
{children}
);