Exercise 9: Password Reset and Change
We will run and verify the Password Reset and Change functionality in this section.
Project
import React from 'react'; import { PasswordForgetForm } from '../PasswordForget'; import PasswordChangeForm from '../PasswordChange'; const AccountPage = () => ( <div> <h1>Account Page</h1> <PasswordForgetForm /> <PasswordChangeForm /> </div> ); export default AccountPage;
The app contains two new components, PasswordForget
and PasswordChange
in the src/components
directory. Keep in mind that we had already created an interface in ...