You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that `NextIntlClientProvider` is a Client Component, therefore if you render it from a Server Component, the props need to be [serializable](https://react.dev/reference/react/use-client#serializable-types) across the server/client boundary.
418
+
419
+
If you provide rich text element functions, this means that you should render the provider along with the configuration for `defaultTranslationValues` from a component that is marked with `'use client'`:
420
+
421
+
```tsx filename="Provider.tsx"
422
+
// Making this a Client Component allows us to provide
423
+
// non-serializable props to `NextIntlClientProvider`
424
+
'use client';
425
+
426
+
import {NextIntlClientProvider} from 'next-intl';
427
+
428
+
export default function Provider({messages, children}) {
429
+
return (
430
+
<NextIntlClientProvider
431
+
// Passing functions as props is fine here!
432
+
defaultTranslationValues={{
433
+
important: (chunks) => <b>{chunks}</b>
434
+
}}
435
+
// Forward messages from the server side
436
+
messages={messages}
437
+
>
438
+
{children}
439
+
</NextIntlClientProvider>
440
+
);
441
+
}
442
+
```
443
+
444
+
In this case, `messages` should be provided from a Server Component, potentially as returned from the [`useMessages`](/docs/usage/configuration#messages) hook.
0 commit comments