fleet/frontend/index.jsx

11 lines
238 B
React
Raw Normal View History

import ReactDOM from 'react-dom';
2016-09-07 00:04:02 +00:00
import routes from './router';
import './index.scss';
2016-09-07 00:04:02 +00:00
if (typeof window !== 'undefined') {
const { document } = global;
const app = document.getElementById('app');
ReactDOM.render(routes, app);
2016-09-07 00:04:02 +00:00
}