Exercise 3: Firebase Authentication
You can build and run the application here and read more about the Firebase Authentication process.
We'll cover the following...
Project
import React from 'react';
const Account = () => (
<div>
<h1>Account</h1>
</div>
);
export default Account;
At this point, we’ve laid down the authentication interface in src/components/Firebase/firebase.js. It contains the foundation for sign-up, sign-in, ...
Ask