Files
SCM-Manager/scm-ui/src/components/PrimaryNavigation.js
2018-07-13 10:57:11 +02:00

21 lines
450 B
JavaScript

//@flow
import React from "react";
import PrimaryNavigationLink from "./PrimaryNavigationLink";
type Props = {};
class PrimaryNavigation extends React.Component<Props> {
render() {
return (
<nav className="tabs is-boxed">
<ul>
<PrimaryNavigationLink to="/users" label="Users" />
<PrimaryNavigationLink to="/logout" label="Logout" />
</ul>
</nav>
);
}
}
export default PrimaryNavigation;