interface Props { title: string subtitle?: string actions?: React.ReactNode } export default function MobileTopHeader({ title, subtitle, actions }: Props) { return (

{title}

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