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

import React from "react";
import ReactDOM from "react-dom";

import "./index.css";

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

import App from "./App";

ReactDOM.render(<App />, document.getElementById("app"));