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
507 B
React
Raw Normal View History

2016-09-12 21:39:54 +02:00
import React, { Component } from 'react';
import { Link } from 'react-router';
import { Navigation } from 'react-toolbox';
export default class UnleashNav extends Component {
render () {
return (
<Navigation type="horizontal">
<Link to="/features">Feature Toggles </Link>
<Link to="/strategies">Strategies </Link>
<a href="https://github.com/finn-no/unleash/" target="_blank">GitHub </a>
</Navigation>
);
}
};