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

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

I have the following:

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



        
17条回答
  •  -上瘾入骨i
    2020-12-23 00:49

    You can add style={{ textDecoration: 'none' }} in your Link component to remove the underline. You can also add more css in the style block e.g. style={{ textDecoration: 'none', color: 'white' }}.

    Get Started

提交回复
热议问题