import i18next from "i18next"; import { createResource, ParentComponent, Show } from "solid-js"; import i18nConfig from "~/i18n/config"; import { I18nContext } from "~/i18n/context"; export const I18nProvider: ParentComponent = (props) => { const [i18nConfigured] = createResource(async () => { await i18nConfig; return true; }); return ( {props.children} ); };