Skip to content

Instantly share code, notes, and snippets.

@hieptlccc
Created October 7, 2022 13:22
Show Gist options
  • Save hieptlccc/c4248a27d0b76f6de6b510dc00e056c0 to your computer and use it in GitHub Desktop.
Save hieptlccc/c4248a27d0b76f6de6b510dc00e056c0 to your computer and use it in GitHub Desktop.
Facebook Clone React - firebase.js
import firebase from "firebase/app";
import 'firebase/firestore';
import 'firebase/auth';
import { firebaseConfig } from "./app.config"
const firebaseApp = firebase.initializeApp(firebaseConfig);
const db = firebaseApp.firestore();
const auth = firebase.auth();
const provider = new firebase.auth.GoogleAuthProvider();
export { auth, provider };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment