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