interface HeaderSectionProps { label?: string; title: string; subtitle?: string; } export function HeaderSection({ label, title, subtitle }: HeaderSectionProps) { return (
{label ? (
{label}
) : null}

{title}

{subtitle ? (

{subtitle}

) : null}
); }