mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-09 00:18:26 +01:00
16 lines
507 B
JavaScript
16 lines
507 B
JavaScript
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>
|
|
);
|
|
}
|
|
};
|