Exercise 7: Session Handling
In this exercise, we will run and verify our app until Session Handling.
We'll cover the following...
We'll cover the following...
Project
import React from 'react';
const Account = () => (
<div>
<h1>Account</h1>
</div>
);
export default Account;
When a user visits the application, only the Sign In and Landing pages are visible. After signing in, we gain access to the protected Account and Home pages which should ...