mon-entreprise/site/source/entry-fr.tsx

27 lines
656 B
TypeScript
Raw Normal View History

import { I18nProvider } from '@react-aria/i18n'
2022-11-03 16:32:04 +00:00
import { withProfiler } from '@sentry/react'
2022-11-23 17:07:01 +00:00
import { createRoot } from 'react-dom/client'
2022-11-03 16:32:04 +00:00
2018-07-12 08:09:41 +00:00
import App from './App'
import i18next from './locales/i18n'
2022-11-03 16:32:04 +00:00
import './sentry'
export const AppFr = () => (
<I18nProvider locale="fr-FR">
2022-01-04 10:11:31 +00:00
<App basename="mon-entreprise" />
</I18nProvider>
)
2022-04-13 16:42:50 +00:00
const AppFrWithProfiler = withProfiler(AppFr)
if (!import.meta.env.SSR) {
2022-03-28 13:34:12 +00:00
i18next.changeLanguage('fr').catch((err) =>
// eslint-disable-next-line no-console
console.error(err)
)
2022-11-23 17:07:01 +00:00
const container = document.querySelector('#js') as Element
const root = createRoot(container)
root.render(<AppFrWithProfiler />)
}