Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/parse-interface-guide/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
import createHashHistory from 'history/lib/createHashHistory';
import PIG from 'parse-interface-guide/PIG.react';
import React from 'react';
import { Router, Route } from 'react-router';
import { browserHistory, Router, Route } from 'react-router';

module.exports = (
<Router history={createHashHistory()}>
<Router history={browserHistory}>
<Route path='/' component={PIG} />
<Route path='/:component' component={PIG} />
</Router>
Expand Down