Skip to content

Commit ba7576d

Browse files
committedMar 14, 2023
registrations page
1 parent 1c26fb3 commit ba7576d

File tree

4 files changed

+2014
-16
lines changed

4 files changed

+2014
-16
lines changed
 

‎firebase/firebase.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { initializeApp } from "firebase/app";
2+
import { getFirestore } from "firebase/firestore";
3+
4+
const firebaseConfig = {
5+
apiKey: "AIzaSyCh6r68XCJ7rQ5GTJn_tjIhRx48rq-OHVU",
6+
authDomain: "arithmania-d394d.firebaseapp.com",
7+
projectId: "arithmania-d394d",
8+
storageBucket: "arithmania-d394d.appspot.com",
9+
messagingSenderId: "526647876215",
10+
appId: "1:526647876215:web:fba72197d25ca6ef3a0472",
11+
measurementId: "G-SQLKBRPBJS"
12+
}
13+
14+
const app = initializeApp(firebaseConfig);
15+
export const db = getFirestore(app);

0 commit comments

Comments
 (0)
Please sign in to comment.