mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
55307de42d
* 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
11 lines
238 B
JavaScript
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);
|
|
}
|