Project Setup and Initialization
Learn to create a React app using CRA and configure it for our project.
We'll cover the following...
Introduction
In this project, we’ll create a small authentication application. Using this application, a user can log in, log out, and view their profile. We’ll use Context API to store the user’s data and authentication state. We’ll also restrict unauthenticated users from accessing private components, and we’ll learn more about private and restricted routes along the way. A set of instructions and hints will be provided ...