Feat/i18n restructure (#2529)
This commit is contained in:
@@ -5,14 +5,12 @@ type II18NContext = {
|
||||
locale: Locale
|
||||
i18n: Record<string, any>
|
||||
setLocaleOnClient: (locale: Locale, reloadPage?: boolean) => void
|
||||
// setI8N: (i18n: Record<string, string>) => void,
|
||||
}
|
||||
|
||||
const I18NContext = createContext<II18NContext>({
|
||||
locale: 'en',
|
||||
locale: 'en-US',
|
||||
i18n: {},
|
||||
setLocaleOnClient: (lang: Locale, reloadPage?: boolean) => { },
|
||||
// setI8N: () => {},
|
||||
})
|
||||
|
||||
export default I18NContext
|
||||
|
Reference in New Issue
Block a user