Is there an easy way to redirect all unknown routes to home page?
I am using the nested route structure where (nested) routes lives inside the components.
Is there an easy way to redirect all unknown routes to home page?
I am using the nested route structure where (nested) routes lives inside the components.
React-Router: No Not Found Route?
For react-router v4
<Switch>
<Route exact path="/" component={MyComponent} />
<Route component={HomePage} />
</Switch>