import React from 'react'; import { NavItem } from 'react-materialize'; import { withRouter } from 'react-router-dom'; const RoutableNavItem = (props) => { return ( { props.history.push(props.href); } }> { props.children } ); } export default withRouter(RoutableNavItem);