How can I redirect to 'Notfound' page when wrong url is entered.
I have following Routes:
<Switch>
<Route path="/about" component={About} />
<Route path="/contact" component={Contact} />
<Route path="/dashboard" component={Dashboard} />
<Route path="/" component={Home} />
<Route path="**" component={Notfound} />
</Switch>
I have tried "**" as path but this did not worked.
Can anybody please help me?