import React from 'react' import * as PropTypes from 'prop-types'; import {Link, Route} from 'react-router-dom' // for bootstrap li active functionality export default function NavItem({children, to, exact}) { return ( (
  • {children}
  • )}/> ) } NavItem.propTypes = { to: PropTypes.string.isRequired, exact: PropTypes.bool, children: PropTypes.node.isRequired, };