"use client"; type Props = { title: string; subtitle?: string; showPrint?: boolean; }; export function PageHeader({ title, subtitle, showPrint = true }: Props) { return (

{title}

{subtitle &&

{subtitle}

}
{showPrint && ( )}
); }