aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/index.tsx
blob: 00a75a4aec2888aef90d3eb9304e16b94bd155f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.sass";

import "./i18n";

import App from "./App";

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