import type { ReactNode } from "react"; import { useTranslation } from "react-i18n-lite"; interface SimpleFormPageLayoutProps { title: string; onBack: () => void; children: ReactNode; } export function SimpleFormPageLayout({ title, onBack, children }: SimpleFormPageLayoutProps) { const { t } = useTranslation(); return (

{title}

{children}
); }