Exercise 4: Sign Up with Firebase
Let's take a look at the code we have implemented up till now.
We'll cover the following...
Project
import React from 'react'; const Account = () => ( <div> <h1>Account</h1> </div> ); export default Account;
The app will look exactly like it did before, but as we have seen, the sign-up functionality has been implemented. The reason we can’t see it is because the Sign Up page is routed through the ...