summaryrefslogtreecommitdiffstats
path: root/src/index.tsx
blob: c381d4a03a26f250545d98e8fe75383082fae346 (plain)
1
2
3
4
5
6
7
8
9
import * as React from "react";
import * as ReactDOM from "react-dom";
import App from "./components/App/App";

import 'bootstrap/dist/css/bootstrap.min.css';

import './index.scss';

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