I am toying with material-ui. I implemented LeftNav using routes, but I could not find a way to get IconMenu, or Menu working with links or routes. Anyone can point me to a
You can use react-route-dom and MenuItem onClick attribute first import react-router-dom:
import { useHistory } from 'react-router-dom'
then declare a function to handle your onClick within your component:
const navigate = () => history.push('route/to/navigate')
and then user your MenuItem