elstat/priv/frontend/src/index.js

14 lines
235 B
JavaScript
Raw Normal View History

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