Sometimes, we want to fix React Router v4 routes not working.
In this article, we’ll look at how to fix React Router v4 routes not working.
How to fix React Router v4 routes not working?
To fix React Router v4 routes not working, we may need the exact
prop to make React Router search for an exact path match.
For instance, we write
<Route exact path="/" component={Home} />;
to add the exact
prop so that going to /
will render the Home
component.
Conclusion
To fix React Router v4 routes not working, we may need the exact
prop to make React Router search for an exact path match.