diff --git a/Firebase.ts b/Firebase.ts index 9030905..af00cbb 100644 --- a/Firebase.ts +++ b/Firebase.ts @@ -1,7 +1,8 @@ // Import the functions you need from the SDKs you need import { initializeApp } from "firebase/app"; import { getAuth, GoogleAuthProvider } from "firebase/auth"; -import { getFirestore } from 'firebase/firestore'; +import { getFirestore } from "firebase/firestore"; +import { getStorage } from "firebase/storage"; // TODO: Add SDKs for Firebase products that you want to use // https://firebase.google.com/docs/web/setup#available-libraries @@ -22,5 +23,6 @@ const app = initializeApp(firebaseConfig); const auth = getAuth(app); const db = getFirestore(app); const googleProvider = new GoogleAuthProvider(); +const storage = getStorage(app); -export { auth, googleProvider, db }; \ No newline at end of file +export { auth, googleProvider, db, storage };