December 2019
Intermediate to advanced
598 pages
12h 21m
English
We'd like a /home path to render the HomePage component, as well as the / path. Let's carry out the following steps to implement this by redirecting /home to /:
import { BrowserRouter, Route, Redirect, Switch } from 'react-router-dom';
<Redirect from="/home" to="/" /><Route exact path="/" component={HomePage} />
<Switch> <Redirect from="/home" to="/" /> <Route exact path="/" component={HomePage} /> <Route path="/search" ...Read now
Unlock full access