...

/

Implementing the Sign-In Process

Implementing the Sign-In Process

Learn to implement sign-in page in our React frontend.

Let's implement the sign-in page in SignInPage.tsx as follows:

  1. We'll start by adding the following import statements:

Press + to interact
import { StatusText } from './Styles';
import { useAuth } from './Auth';

StatusText is a shared style we are going to use when we inform the user that we are redirecting to and from Auth0. useAuth is the custom Hook ...