You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
666 B
25 lines
666 B
import './index.css';
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import App from './App';
|
|
import { TranslationContext } from './translations/TranslationContext';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
if (!rootElement) throw new Error('Failed to find the root element');
|
|
const root = ReactDOM.createRoot(rootElement);
|
|
|
|
root.render(
|
|
<React.StrictMode>
|
|
<TranslationContext>
|
|
<App />
|
|
</TranslationContext>
|
|
</React.StrictMode>,
|
|
);
|
|
|
|
// Hot Module Replacement (HMR) - Remove this snippet to remove HMR.
|
|
// Learn more: https://www.snowpack.dev/#hot-module-replacement
|
|
if (import.meta.hot) {
|
|
import.meta.hot.accept();
|
|
}
|
|
|