elstat/priv/frontend/src/index.js

11 lines
221 B
JavaScript
Raw Normal View History

2018-07-16 04:04:43 +00:00
import React from 'react'
import ReactDOM from 'react-dom'
2018-06-12 21:56:50 +00:00
2018-07-16 04:04:43 +00:00
import './index.css'
import App from './components/App'
2018-07-16 04:04:43 +00:00
import register from './icons.js'
2018-06-12 21:56:50 +00:00
2018-07-16 04:04:43 +00:00
register()
2018-07-14 01:57:02 +00:00
2018-08-08 23:43:53 +00:00
ReactDOM.render(<App />, document.getElementById('root'))