aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/index.tsx
blob: ea9400043cc380d6c0ad25aa9658acd7501a0b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import "regenerator-runtime";
import "core-js/modules/es.promise";
import "core-js/modules/es.array.iterator";
import "pepjs";

import React from "react";
import { createRoot } from "react-dom/client";

import "./index.css";

import "./i18n";
import "./palette";
import "./service-worker";

import App from "./App";

const container = document.getElementById("app");
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const root = createRoot(container!);
root.render(<App />);