import PropTypes from 'prop-types'; import { LinkContainer } from 'react-router-bootstrap'; import Nav from 'react-bootstrap/Nav'; function NavLink(props) { const { to, content, ...otherProps } = props; return ( {content} ); } NavLink.propTypes = { to: PropTypes.string.isRequired, content: PropTypes.string }; export default NavLink;