...

/

Exercise 5: Sign In with Firebase

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.

We'll cover the following...

Project

import React from 'react';

const Account = () => (
  <div>
    <h1>Account</h1>
  </div>
);

export default Account;

Now, the sign-up ...