aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/index.js
blob: beb52aeb8bb416f19a082b34b465fd50ae833133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import ReactDOM from 'react-dom';
import 'bootstrap/dist/css/bootstrap.css';
import './index.scss';
import App from './views/App';
import * as serviceWorker from './serviceWorker';
import notifications from "./notifications";

notifications.createWebsocket();

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById('root')
);

serviceWorker.unregister();