December 2019
Intermediate to advanced
598 pages
12h 21m
English
At the moment, when we click on Q and A in the top-left corner of the app, it is doing an HTTP request that returns the whole React app, which, in turn, renders the home page. We are going to change this by making use of the React Routers Link component so that navigation happens in the browser without an HTTP request. We are also going to make use of the Link component for the link to the sign-in page as well. We'll learn how to achieve this by following these steps:
import { Link } from 'react-router-dom';
<Link to="/" css={ ...Read now
Unlock full access