import React, {PropTypes} from 'react' import {Route, Link} 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, };