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

{title}

{subtitle &&

{subtitle}

}
{action}
); }