import type { ReactNode } from "react"; interface SidebarSectionProps { label: string; children: ReactNode; } export function SidebarSection({ label, children }: SidebarSectionProps) { return (
{label}
{children}
); }