You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
amazon-clone/src/firebase.js

16 lines
363 B

import firebase from 'firebase'
const firebaseApp = firebase.initializeApp({
apiKey: YOUR_API_KEY,
authDomain: YOUR_AUTH_DOMAIN,
databaseURL: YOUR_DATABASE_URL,
projectId: YOUR_PROJECT_ID,
storageBucket: '',
messagingSenderId: YOUR_MESSAGING_SENDER_ID,
appId: YOUR_APP_ID,
measurementId: YOURS
});
const auth = firebase.auth();
export { auth };