Exercise 1: Adding Firebase!
In this exercise, we will verify and test the app we have built so far.
We'll cover the following...
Project
import React from 'react'; const Account = () => ( <div> <h1>Account</h1> </div> ); export default Account;
At this point, the basic outlook of our React app has been created. Firebase has been imported into the app and we’ll connect it to our React components in the future.