export function PageHeader({ title, subtitle, action, }: { title: string; subtitle?: string; action?: React.ReactNode; }) { return (

{title}

{subtitle && (

{subtitle}

)}
{action}
); }