Answers for "react router dom link to external site in new tab"

5

react router external link

<Link to={{ pathname: "https://example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies" }} target="_blank" />
Posted by: Guest on September-04-2020
0

react hooks link to external site new tab

// Open in the same window
        window.location.href = externalLink;

        // Open in a new window
        window.open(externalLink);
Posted by: Guest on August-21-2021

Code answers related to "react router dom link to external site in new tab"

Code answers related to "Javascript"

Browse Popular Code Answers by Language