//@flow import React from "react"; import { translate } from "react-i18next"; import PrimaryNavigationLink from "./PrimaryNavigationLink"; type Props = { t: string => string }; class PrimaryNavigation extends React.Component { render() { const { t } = this.props; return ( ); } } export default translate("commons")(PrimaryNavigation);