aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/index.tsx
blob: fb0c88992005b85f1c057844a67f3b03b60de620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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";

import { userService } from "./services/user";

void userService.checkLoginState();

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