import React from 'react'; import { useUIStore } from '../../stores/uiStore'; interface MobileScreenHeaderProps { title: string; rightActions?: React.ReactNode; } export function MobileScreenHeader({ title, rightActions }: MobileScreenHeaderProps) { const popMobileScreen = useUIStore((s) => s.popMobileScreen); return (

{title}

{rightActions}
); }