Files
e-tib.com/app/[locale]/test/page.tsx
Marc Mintel d14122005d Initial commit: E-TIB production hardening & E2E foundation
Former-commit-id: ef04fca3d76375630c05aac117bf586953f3b657
2026-04-28 19:11:38 +02:00

13 lines
263 B
TypeScript

import { setRequestLocale } from 'next-intl/server';
export default async function TestPage(props: any) {
const { locale } = await props.params;
setRequestLocale(locale);
return (
<div>
<h1>TEST PAGE IN LOCALE DIRECTORY</h1>
</div>
);
}