import * as React from 'react' interface PageHeaderProps { title: string description?: string action?: React.ReactNode /** * Page help content, rendered as a small "?" popover right after the H1 * (UI-migration convention 7). Pass a .... */ help?: React.ReactNode } export function PageHeader({ title, description, action, help }: PageHeaderProps) { return (
{/* Locked at exactly 24px/32px (UI-migration convention 2) */}

{title}

{help}
{description && (

{description}

)}
{action &&
{action}
}
) }