forked from esnet/react-timeseries-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
27 lines (22 loc) · 878 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React from "react";
import ReactDOM from "react-dom";
import { Router, IndexRoute, Route, hashHistory } from "react-router";
import "./website/index.css";
import "react-select/dist/react-select.css";
import App from "./website/App";
import Guide from "./website/components/Guide";
import Example from "./website/components/Example";
import API from "./website/components/API";
import registerServiceWorker from "./registerServiceWorker";
ReactDOM.render(
<Router history={hashHistory}>
<Route path="/" component={App}>
<IndexRoute component={Guide} />
<Route path="guide/:doc" component={Guide} />
<Route path="example/:example" component={Example} />
<Route path="api/:packages/:component" component={API} />
</Route>
</Router>,
document.getElementById("root")
);
registerServiceWorker();