aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
blob: 07ea0736cd9d04aaae1dfbadb8ebac1224441506 (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import './i18n';

const root = createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);