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
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|