From 83eb0265ad0044d843530475106a3ffdf7793034 Mon Sep 17 00:00:00 2001
From: isaacwsolomon <isaacwsolomon@gmail.com>
Date: Sun, 11 May 2025 19:50:34 +0200
Subject: [PATCH] Expo project set up with basic typescript template. Added
 firebaseConfig file and initialised it

---
 firebaseConfig.ts | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 firebaseConfig.ts

diff --git a/firebaseConfig.ts b/firebaseConfig.ts
new file mode 100644
index 0000000..c1f8a80
--- /dev/null
+++ b/firebaseConfig.ts
@@ -0,0 +1,23 @@
+import { initializeApp } from 'firebase/app';
+
+// Optionally import the services that you want to use
+// import {...} from 'firebase/auth';
+// import {...} from 'firebase/database';
+// import {...} from 'firebase/firestore';
+// import {...} from 'firebase/functions';
+// import {...} from 'firebase/storage';
+
+// Initialize Firebase
+const firebaseConfig = {
+    apiKey: "AIzaSyDVLTu3KD-ivA2O16peo-iqevuBw97S3_8",
+    authDomain: "reacttodoapp-1a8ef.firebaseapp.com",
+    projectId: "reacttodoapp-1a8ef",
+    storageBucket: "reacttodoapp-1a8ef.firebasestorage.app",
+    messagingSenderId: "343748110693",
+    appId: "1:343748110693:web:dcef9c613703383441d98c",
+    measurementId: "G-CPTGYLFRW0"
+};
+
+const app = initializeApp(firebaseConfig);
+// For more information on how to access Firebase in your project,
+// see the Firebase documentation: https://firebase.google.com/docs/web/setup#access-firebase
-- 
GitLab