We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56cf0f1 commit 8dc240dCopy full SHA for 8dc240d
src/firebaseConfig.js
@@ -1,3 +1,4 @@
1
+// Replace with your Firebase config
2
const firebaseConfig = {
3
apiKey: "AIzaSyBWA4uAKqe3obPuu2B2iV7aLeXmBwlg4V0",
4
authDomain: "quicknotes-450c5.firebaseapp.com",
@@ -6,8 +7,12 @@ const firebaseConfig = {
6
7
messagingSenderId: "805202072549",
8
appId: "1:805202072549:web:fd935ed2b879bb2d11550c",
9
measurementId: "G-5PP4E8PYG3"
10
+
11
};
12
13
// Initialize Firebase
14
firebase.initializeApp(firebaseConfig);
15
16
+// Globals for app.js
17
const db = firebase.firestore();
18
+const auth = firebase.auth();
0 commit comments