1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| 'use client'
|
| import type { FC } from 'react'
| import React, { useEffect } from 'react'
| import I18NContext from '@/context/i18n'
| import type { Locale } from '@/i18n'
| import { setLocaleOnClient } from '@/i18n'
|
| export type II18nProps = {
| locale: Locale
| children: React.ReactNode
| }
| const I18n: FC<II18nProps> = ({
| locale,
| children,
| }) => {
| useEffect(() => {
| setLocaleOnClient(locale, false)
| }, [locale])
|
| return (
| <I18NContext.Provider value={{
| locale,
| i18n: {},
| setLocaleOnClient,
| }}>
| {children}
| </I18NContext.Provider>
| )
| }
| export default React.memo(I18n)
|
|