How to get rid of underline for Link component of React Router?

后端 未结 17 2566
独厮守ぢ
独厮守ぢ 2020-12-23 00:16

I have the following:

How do I get rid of the blue underline? The code is below:



        
17条回答
  •  情歌与酒
    2020-12-23 00:38

    I think the best way to use react-router-dom Link in a MenuItem (and other MaterialUI component such as buttons) is to pass the Link in the "component" prop

    
       Team 1
       Team 2
    
    

    you need to pass the route path in the 'to' prop of the "MenuItem" (which will be passed down to the Link component). In this way you don't need to add any style as it will use the MenuItem style

提交回复
热议问题