import { initializeApp } from "firebase/app";
import { getAuth } from "firebase/auth";
// import { getFirestore } from "firebase/firestore";
// import { getStorage } from "firebase/storage";
const firebaseConfig = {
apiKey: "hlssfksfls2lldf",
authDomain: "firebaseapp.com",
projectId: "PROD",
storageBucket: "appspot.com",
messagingSenderId: "SENDERID",
appId: "APP",
};
export const app = initializeApp(firebaseConfig);
export const auth = getAuth(app);
// export const db = getFirestore(app);
// export const storage = getStorage(app);