Exercise 6: Sign Out with Firebase
Here's all the code we need to implement sign-up, sign-in, and sign-out.
We'll cover the following...
Project
import React from 'react'; const Account = () => ( <div> <h1>Account</h1> </div> ); export default Account;
As discussed earlier, the “Sign Out” option is just a button for now. We’ll implement its functionality soon.
Exercise
- Confirm your