import { ReactNode } from "react"; interface SectionHeaderProps { title: string; children?: ReactNode; } export default function SectionHeader({ title, children }: SectionHeaderProps) { return (

{title}

{children &&
{children}
}
); }