mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
a few more menu-items #153
This commit is contained in:
parent
bb5168c805
commit
834a0a151d
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { Link } from 'react-router';
|
import { Link } from 'react-router';
|
||||||
import { ListSubHeader, List, ListItem } from 'react-toolbox';
|
import { ListSubHeader, List, ListItem, ListDivider } from 'react-toolbox';
|
||||||
|
|
||||||
export default class UnleashNav extends Component {
|
export default class UnleashNav extends Component {
|
||||||
render () {
|
render () {
|
||||||
@ -8,8 +8,18 @@ export default class UnleashNav extends Component {
|
|||||||
<List selectable ripple>
|
<List selectable ripple>
|
||||||
<Link to="/features"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
|
<Link to="/features"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
|
||||||
<Link to="/strategies"><ListItem selectable caption="Strategies" /></Link>
|
<Link to="/strategies"><ListItem selectable caption="Strategies" /></Link>
|
||||||
|
<Link to="/log"><ListItem selectable caption="Log" /></Link>
|
||||||
|
<Link to="/archive"><ListItem selectable caption="Archive" /></Link>
|
||||||
|
<ListDivider />
|
||||||
|
<ListSubHeader Resources/>
|
||||||
|
<Link to="/archive"><ListItem selectable caption="Documentation" /></Link>
|
||||||
<a href="https://github.com/finn-no/unleash/" target="_blank"><ListItem selectable caption="GitHub" /></a>
|
<a href="https://github.com/finn-no/unleash/" target="_blank"><ListItem selectable caption="GitHub" /></a>
|
||||||
|
<ListDivider />
|
||||||
|
<ListItem selectable={false} ripple="false">
|
||||||
|
<p>A product by <a href="https://finn.no" target="_blank">FINN.no</a></p>
|
||||||
|
</ListItem>
|
||||||
</List>
|
</List>
|
||||||
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,9 @@ ReactDOM.render((
|
|||||||
<Router history={hashHistory}>
|
<Router history={hashHistory}>
|
||||||
<Route path="/" component={App}>
|
<Route path="/" component={App}>
|
||||||
<Route path="/features" component={Features} />
|
<Route path="/features" component={Features} />
|
||||||
<Route path="/Strategies" component={Strategies} />
|
<Route path="/strategies" component={Strategies} />
|
||||||
|
<Route path="/log" component={Strategies} />
|
||||||
|
<Route path="/archive" component={Strategies} />
|
||||||
</Route>
|
</Route>
|
||||||
</Router>
|
</Router>
|
||||||
), document.getElementById('app'));
|
), document.getElementById('app'));
|
||||||
|
Loading…
Reference in New Issue
Block a user