Exercise 2: Firebase in React!
We will run and verify our app after adding Firebase in it.
Project
import React from 'react'; const Account = () => ( <div> <h1>Account</h1> </div> ); export default Account;
While there are no changes on the front-end of the application, a new context.js
has been created in src/components/Firebase
. This will allow us to create ...