import type { ReactNode } from "react"; export interface SectionTitleProps { title: string; subtitle?: string; action?: ReactNode; } export function SectionTitle({ title, subtitle, action }: SectionTitleProps) { return (

{title}

{subtitle ?

{subtitle}

: null}
{action}
); }