Anchor
Fundamental component for rendering links to external addresses.
The <Anchor>
element, with its href
attribute, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address.
Content within each <Anchor>
should indicate the link's destination. If the href
attribute is present, pressing the enter key while focused on the <Anchor>
element will activate it.
See the MDN docs for more information.
If you need to link to an internal application route, prefer using the react-router-dom
<Link>
or the @remix-run/react
<Link>
.
This link will go to ngrok.com!
<p>
This link will go to <Anchor href="https://ngrok.com/">ngrok.com</Anchor>!
</p>