TextLink
The TextLink component looks like a traditional hyperlink and functions as either a link or a button based on the asButton
prop.
I'm a link!
<TextLink to="#" newWindow>I'm a link!</TextLink>
<TextLink asButton handleClick={() => alert('button clicked!')}>
I'm a button!
</TextLink>