elstat/priv/frontend/src/index.js

14 lines
244 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'
2018-07-18 22:01:58 +00:00
import Dashboard from './components/Dashboard'
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-06-12 21:56:50 +00:00
ReactDOM.render(
2018-07-18 22:01:58 +00:00
<Dashboard/>,
document.getElementById('root')
2018-07-16 04:04:43 +00:00
)