Skip to content

Instantly share code, notes, and snippets.

@kareemdjames
Created January 16, 2018 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kareemdjames/360f1db0d3982927319920731a00176a to your computer and use it in GitHub Desktop.
Save kareemdjames/360f1db0d3982927319920731a00176a to your computer and use it in GitHub Desktop.
React Firebase Setup
Import firebase from 'firebase'
const config = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};
firebase.initializeApp(config);
export default firebase;
export const database = firebase.database();
export const auth = firebase.auth();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment