Today I work on an one page in ReactJS. But I want a 404 notFoundPage component show up if there is no result in the url. I have used:
<Switch>
<Route path="#index" component={Index} />
<Route path="#about" component={About} />
<Route path="#projects" component={Projects} />
<Route path="#contact" component={Contact} />
<Route exact component={PageNotFound} />
</Switch>
and:
<Switch>
<Route path="#index" component={Index} />
<Route path="#about" component={About} />
<Route path="#projects" component={Projects} />
<Route path="#contact" component={Contact} />
<Redirect component={PageNotFound} />
</Switch>
Could someone help me out? I would appreciate it!
Thanks in advance