Files
old-spike/client/app.js

15 lines
376 B
JavaScript
Raw Normal View History

2016-02-22 14:36:07 -06:00
import 'babel-polyfill';
import 'bootstrap/dist/js/bootstrap.min';
import React from 'react';
import ReactDOM from 'react-dom';
2016-02-29 18:20:00 -06:00
import {Router} from 'react-router';
import {ROUTES} from './dashboard/routes';
2016-02-22 14:36:07 -06:00
2016-02-29 18:20:00 -06:00
export default function(history){
2016-02-22 20:02:45 -06:00
ReactDOM.render(
2016-02-29 18:20:00 -06:00
React.createElement(Router, {routes: ROUTES, history: history}),
2016-02-22 20:02:45 -06:00
document.getElementById('root')
);
};