aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/index.tsx
blob: 64a2cd1fcc541b64ce8f2015188cd14e3539edaa (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.sass";

import "./i18n";

import App from "./App";

import "./palette";

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