interface HeaderProps { title: string actions?: React.ReactNode } export function Header({ title, actions }: HeaderProps) { return (

{title}

{actions &&
{actions}
}
) }