Initial commit
This commit is contained in:
17
src/index.tsx
Normal file
17
src/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
/* @refresh reload */
|
||||
import { render } from 'solid-js/web';
|
||||
|
||||
import { I18nContext } from "@solid-primitives/i18n";
|
||||
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import localization from './localization';
|
||||
|
||||
render(
|
||||
() => (
|
||||
<I18nContext.Provider value={localization}>
|
||||
<App />
|
||||
</I18nContext.Provider>
|
||||
),
|
||||
document.getElementById('root') as HTMLElement
|
||||
);
|
||||
Reference in New Issue
Block a user