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 './index.css'
|
|
|
|
import App from './App'
|
|
|
|
import * as serviceWorker from './serviceWorker'
|
2019-07-27 19:18:54 +09:00
|
|
|
|
2019-07-31 14:17:32 +09:00
|
|
|
ReactGA.initialize('UA-28919359-15')
|
|
|
|
ReactGA.pageview(window.location.pathname + window.location.search)
|
|
|
|
|
2019-07-30 23:27:28 +09:00
|
|
|
ReactDOM.render(<App />, document.getElementById('root'))
|
2019-07-27 19:18:54 +09:00
|
|
|
|
2019-07-30 23:27:28 +09:00
|
|
|
serviceWorker.unregister()
|