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
After doing a little searching myself I went with a slightly different solution:
{handleClose("/#about")}}>About me
With a supporting JS function:
function handleClose(nav) { window.location.href = nav; }
Hopefully proves of use as an alternative.