import React from 'react'; import PropTypes from 'prop-types'; import { withRouter } from 'react-router-dom'; import { LinkContainer } from 'react-router-bootstrap'; import { Nav, NavDropdown, MenuItem } from 'react-bootstrap'; /* FIXME: navitem needs a nav-link class but does not works https://github.com/react-bootstrap/react-bootstrap/issues/2644 className="nav-link" so we did a custom NavLink */ import NavItem from '../NavItem/NavItem'; import { Meteor } from 'meteor/meteor'; const AuthenticatedNavigation = ({ name, history }) => (
{/* https://github.com/react-bootstrap/react-bootstrap/blob/master/src/Nav.js */}
); AuthenticatedNavigation.propTypes = { name: PropTypes.string.isRequired, }; export default withRouter(AuthenticatedNavigation);