import type { ReactNode } from 'react' export function PageHeader({ title, description, actions, divider = true, }: { title: string description?: string actions?: ReactNode divider?: boolean }) { return (

{title}

{description && (

{description}

)}
{actions &&
{actions}
}
) }