Search⌘ K
AI Features

Exercise 1: Adding Firebase!

Explore the initial steps of integrating Firebase into a React app. Understand how to import Firebase and set up your environment to prepare for authentication and database use. This lesson helps you confirm your project setup and gives a foundation for connecting Firebase with React components.

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