Files
JavaScriptServices/samples/react/ReactGrid/ReactApp/boot-client.jsx
SteveSandersonMS f693bd60e3 Initial state
2015-11-02 10:30:36 -08:00

9 lines
399 B
JavaScript

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(<ReactApp history={ history } />, document.getElementById('react-app'));