remove underline Link react code example
Example 1: remove underline from link i react
<Link to="/" style={{textDecoration:"none"}} />
Example 2: remove underline from hyperlink react
You can add style={{ textDecoration: 'none' }}
Example 3: react link underline
<Link to="first" style={{ textDecoration: 'none' }}>
<MenuItem style={{ paddingLeft: 13 }}>Team 1</MenuItem>
</Link>