Material UI Menu using routes

前端 未结 12 934
悲哀的现实
悲哀的现实 2020-12-17 08:59

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

12条回答
  •  再見小時候
    2020-12-17 09:12

    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.

提交回复
热议问题