December 2019
Intermediate to advanced
598 pages
12h 21m
English
We are going to define all of the routes to the pages we created by carrying out the following steps:
import { BrowserRouter, Route } from 'react-router-dom';import { AskPage } from './AskPage';import { SearchPage } from './SearchPage';import { SignInPage } from './SignInPage';
<BrowserRouter> <div css={ ... } > <Header /> <HomePage /> </div></BrowserRouter>
The BrowserRouter component will look for Route components nested within it and render the component defined if the route matches the location in the browser.
Read now
Unlock full access