1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-20 05:50:32 +09:00
namae/web/src/index.js

13 lines
354 B
JavaScript
Raw Normal View History

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-02 04:23:21 +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-02 04:23:21 +09:00
serviceWorker.register()