2019-07-30 23:27:28 +09:00
|
|
|
import React from 'react'
|
|
|
|
import ReactDOM from 'react-dom'
|
2019-07-31 14:17:32 +09:00
|
|
|
import ReactGA from 'react-ga'
|
2019-07-30 23:27:28 +09:00
|
|
|
import App from './App'
|
2019-08-01 13:21:23 +09:00
|
|
|
// import * as serviceWorker from './serviceWorker'
|
2019-07-27 19:18:54 +09:00
|
|
|
|
2019-08-01 01:10:09 +09:00
|
|
|
ReactDOM.render(<App />, document.getElementById('root'))
|
|
|
|
|
2019-07-31 14:17:32 +09:00
|
|
|
ReactGA.initialize('UA-28919359-15')
|
|
|
|
ReactGA.pageview(window.location.pathname + window.location.search)
|
|
|
|
|
2019-08-01 13:21:23 +09:00
|
|
|
// serviceWorker.unregister()
|