Files
turingflow-brand-003/src/i18n/context.ts
“dongming” ea72dd0c3c first commit
2026-01-21 16:08:49 +08:00

11 lines
276 B
TypeScript

import { createContext } from 'react'
import type { Locale } from './translations'
export type I18nContextValue = {
locale: Locale
setLocale: (locale: Locale) => void
t: (key: string) => string
}
export const I18nContext = createContext<I18nContextValue | null>(null)