Exercise 5: Sign In with Firebase
Let's take a look at all the code we have up till now. The sign-up and sign-in functionalities will be working.
Project
import React from 'react'; const Account = () => ( <div> <h1>Account</h1> </div> ); export default Account;
Now, the sign-up and sign-in functionalities work! Go to the Sign In
page. From here we must navigate to the Sign Up
link which takes us to /signup
. Create an account and see it ...