React Router fügen Fallback hinzu, um alle zu fangen

<Route path="/" exact>
  <Home />
</Route>
<Route path="/will-match">
  <WillMatch />
</Route>
<Route path='*'>
  <NoMatch />
</Route>
elcharitas