Files
old-spike/client/app.js
2016-02-29 18:37:52 -06:00

15 lines
376 B
JavaScript

import 'babel-polyfill';
import 'bootstrap/dist/js/bootstrap.min';
import React from 'react';
import ReactDOM from 'react-dom';
import {Router} from 'react-router';
import {ROUTES} from './dashboard/routes';
export default function(history){
ReactDOM.render(
React.createElement(Router, {routes: ROUTES, history: history}),
document.getElementById('root')
);
};