import type { ReactNode } from "react"; import { useNavigate } from "react-router-dom"; import { IconArrowBack, IconAccount } from "./icons"; // Оболочка экранов: заголовок + опциональная кнопка «назад» + кнопка профиля. export function Layout({ title, children, back, showProfile = true, }: { title: string; children: ReactNode; back?: string; // путь для кнопки «назад» showProfile?: boolean; }) { const navigate = useNavigate(); return (
{back && ( )} {title}
{showProfile && ( )}
{children}
); }