UNPKG

andrei-bread-i18n

Version:

Small and type-safe package to create multi-language interfaces.

5 lines (3 loc) 142 B
import { createContext } from "react"; import { I18N } from "../i18n"; export const I18NContext = createContext<I18N<any> | null>(null);