fleet/frontend/index.jsx
Jason Meller 55307de42d SCSS Pipeline and style fixes (#229)
* Add SCSS pipeline and fix login style issues

* Fix nav styles and make tests pass

* Fix nav header styles and animations

* Change font-size to 13px on nav

* Fix duplicate specificity of styles
2016-09-23 14:04:01 -04:00

11 lines
238 B
JavaScript

import ReactDOM from 'react-dom';
import routes from './router';
import './index.scss';
if (typeof window !== 'undefined') {
const { document } = global;
const app = document.getElementById('app');
ReactDOM.render(routes, app);
}