import { setRequestLocale } from 'next-intl/server'; export default async function TestPage(props: any) { const { locale } = await props.params; setRequestLocale(locale); return (

TEST PAGE IN LOCALE DIRECTORY

); }