UNPKG

@brizy/ui

Version:
7 lines (6 loc) 271 B
import React from "react"; import { I18nextProvider } from "react-i18next"; import { getConfig } from "./getConfig"; export const TranslationProvider = ({ locale, children }) => { return React.createElement(I18nextProvider, { i18n: getConfig(locale) }, children); };