can't open new tab in react, adds localhost:3000 on link?

Viewed 8094
3 Answers

I tried to use Link but I had the same problem. Now I'm using this onClick={() => { window.open('LINK','_blank')}}

When I used Link like

<Link to={`//${isHrefVlaue}`}></Link>

this was opening without localhost, but it was missing the colon in https and not working as expected.

But then it worked after I replaced Link with an anchor like

<a href={isHrefVlaue}></a>
Related