Search⌘ K

Exercise 3: Firebase Authentication

Explore how to implement Firebase Authentication within a React app. Learn to confirm your source code, and prepare to use Firebase methods in React components for user sign-up, sign-in, and password management.

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