1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-09 00:18:26 +01:00
unleash.unleash/packages/unleash-frontend-next/src/Navigation.jsx

26 lines
1.2 KiB
React
Raw Normal View History

2016-09-12 21:39:54 +02:00
import React, { Component } from 'react';
import { Link } from 'react-router';
2016-09-13 23:10:58 +02:00
import { ListSubHeader, List, ListItem, ListDivider } from 'react-toolbox';
2016-09-12 21:39:54 +02:00
export default class UnleashNav extends Component {
render () {
return (
2016-09-13 23:01:38 +02:00
<List selectable ripple>
2016-09-16 21:36:35 +02:00
<Link to="/"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
2016-09-13 23:01:38 +02:00
<Link to="/strategies"><ListItem selectable caption="Strategies" /></Link>
2016-09-22 13:52:54 +02:00
<Link to="/history"><ListItem selectable caption="Event History" /></Link>
2016-09-13 23:10:58 +02:00
<Link to="/archive"><ListItem selectable caption="Archive" /></Link>
<ListDivider />
<ListSubHeader Resources/>
<Link to="/archive"><ListItem selectable caption="Documentation" /></Link>
2016-09-13 23:01:38 +02:00
<a href="https://github.com/finn-no/unleash/" target="_blank"><ListItem selectable caption="GitHub" /></a>
2016-09-13 23:10:58 +02:00
<ListDivider />
<ListItem selectable={false} ripple="false">
<p>A product by <a href="https://finn.no" target="_blank">FINN.no</a></p>
</ListItem>
2016-09-13 21:35:16 +02:00
</List>
2016-09-13 23:10:58 +02:00
2016-09-12 21:39:54 +02:00
);
}
};