Files
web/i18n/Provider.tsx
2024-06-05 13:25:10 +02:00

13 lines
274 B
TypeScript

"use client"
import { IntlProvider } from "react-intl"
import type { ServerIntlProviderProps } from "@/types/i18n"
export default function ServerIntlProvider({
children,
intl,
}: ServerIntlProviderProps) {
return <IntlProvider {...intl}>{children}</IntlProvider>
}