...

/

Exercise 4: Sign Up with Firebase

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