blob: 42d2abd6f9617ac5554c5c260f7e983b153786f8 [file] [log] [blame]
Larbi Gharibe9af9732021-03-31 15:08:01 +01001import React from 'react';
2import ReactDOM from 'react-dom';
3import './index.css';
4import App from './App';
Adrien Béraudc4dd44a2021-04-08 01:05:24 -04005//import * as serviceWorker from './serviceWorker';
Larbi Gharibe9af9732021-03-31 15:08:01 +01006
7ReactDOM.render(
8 <React.StrictMode>
9 <App />
10 </React.StrictMode>,
11 document.getElementById('root')
12);
13
14// If you want your app to work offline and load faster, you can change
15// unregister() to register() below. Note this comes with some pitfalls.
16// Learn more about service workers: https://bit.ly/CRA-PWA
Adrien Béraudc4dd44a2021-04-08 01:05:24 -040017//serviceWorker.unregister();