using NavLink with external URL

react-router meant to route in a Single Page Applications, i.e route is handled on the client side.
When you want to route to an external page e.g route is handled on the server side, you can use a normal anchor tag:

<a href="https://stackoverflow.com/questions/46176506/url.com">Wiki</a>

Leave a Comment