type PageHeaderProps = { title: string; onBack?: () => void; backLabel?: string; right?: React.ReactNode; }; export default function PageHeader({ title, onBack, backLabel = '←', right }: PageHeaderProps) { return (
{onBack ? ( ) : ( )}
{title}
{right ?? }
); }