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

{title}

{actions ? (
{actions}
) : null}

{description}

); }