import type { ReactNode } from 'react' interface Props { title: string subtitle?: string actions?: ReactNode } export function PageHeader({ title, subtitle, actions }: Props) { return (

{title}

{subtitle &&

{subtitle}

}
{actions &&
{actions}
}
) }