"use client" import { type IntlConfig, IntlProvider } from "react-intl" type ClientIntlProviderProps = React.PropsWithChildren< Pick > export default function ClientIntlProvider({ children, locale, defaultLocale, messages, }: ClientIntlProviderProps) { return ( {children} ) }