import UserForm from '../UserForm'; import { getI18n } from '@/locales/server'; import type { Locale } from '@/locales/server'; export default async function AddUserPage({ params }: { params: { locale: Locale } }) { const t = await getI18n(); // To preload translations for the client component return (
); }