0

I'm trying to do exactly this but with Reach Router instead of React Router:

React-Router External link

scoots
  • 685
  • 3
  • 15

1 Answers1

2

As suggested by @Sagiv b.g on this answer here:

react-router meant to "route" in a Single Page Applications. when you want to route to an external page that's not routing on a single page.

You should use window.location, or plain old HTML <a href="url" ...

sebamed
  • 847
  • 1
  • 8
  • 15