AI Features

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 ...