aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/index.tsx
blob: 0c66dda0358e79f593ea9e23fa3d39b7f959b2f8 (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.scss';

import './i18n';

import App from './App';

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