I have the following:
How do I get rid of the blue underline? The code is below:
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' }}.
style={{ textDecoration: 'none' }}
Link
css
style
style={{ textDecoration: 'none', color: 'white' }}
Get Started