import type { PropsWithChildren } from "react"; export function PageHeader({ actions, description, eyebrow, title, }: { actions?: PropsWithChildren["children"]; description?: string; eyebrow?: string; title: string; }) { return (
{description}
) : null}