2020-01-13 18:53:23 -09:00
|
|
|
import React from 'react'
|
|
|
|
|
import ReactDOM from 'react-dom'
|
|
|
|
|
import './index.css'
|
|
|
|
|
import App from './App'
|
|
|
|
|
import * as serviceWorker from './serviceWorker'
|
|
|
|
|
|
2021-06-25 10:08:00 -08:00
|
|
|
ReactDOM.render(<App />, document.getElementById('root'))
|
2020-01-13 18:53:23 -09:00
|
|
|
|
|
|
|
|
// If you want your app to work offline and load faster, you can change
|
|
|
|
|
// unregister() to register() below. Note this comes with some pitfalls.
|
|
|
|
|
// Learn more about service workers: https://bit.ly/CRA-PWA
|
2020-09-29 09:09:49 -08:00
|
|
|
serviceWorker.register()
|