mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
//@flow
|
|
import React from "react";
|
|
import PrimaryNavigationLink from "./PrimaryNavigationLink";
|
|
|
|
class PrimaryNavigation extends React.Component<Props> {
|
|
render() {
|
|
return (
|
|
<nav className="tabs is-boxed">
|
|
<ul>
|
|
<PrimaryNavigationLink to="/users">Users</PrimaryNavigationLink>
|
|
</ul>
|
|
</nav>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default PrimaryNavigation;
|