Files
JavaScriptServices/templates/ReactSpa/ClientApp/boot.tsx
2016-02-23 15:04:58 +00:00

13 lines
355 B
TypeScript

import 'bootstrap/dist/css/bootstrap.css';
import './css/site.css';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { browserHistory, Router } from 'react-router';
import { routes } from './routes';
ReactDOM.render(
<Router history={ browserHistory } children={ routes } />,
document.getElementById('react-app')
);