import React from 'react'; import ReactDOM from 'react-dom'; import createBrowserHistory from 'history/lib/createBrowserHistory'; import { ReactApp } from './components/ReactApp.jsx'; // In the browser, we render into a DOM node and hook up to the browser's history APIs var history = createBrowserHistory(); ReactDOM.render(, document.getElementById('react-app'));