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

16 lines
652 B
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 21:35:16 +02:00
import { ListSubHeader, List, ListItem } 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>
<Link to="/features"><ListItem selectable className="active" caption="Feature Toggles" /></Link>
<Link to="/strategies"><ListItem selectable caption="Strategies" /></Link>
<a href="https://github.com/finn-no/unleash/" target="_blank"><ListItem selectable caption="GitHub" /></a>
2016-09-13 21:35:16 +02:00
</List>
2016-09-12 21:39:54 +02:00
);
}
};