Last active
December 9, 2016 04:11
-
-
Save varun-raj/1978309c6d3a8015c9240dfab9dcee55 to your computer and use it in GitHub Desktop.
Firebase + React Native Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as firebase from "firebase"; | |
var config = { | |
apiKey: "<YOUR API KEY GOES HERE >", | |
authDomain: "<YOUR APP DOMAIN GOES HERE>", | |
databaseURL: "<YOUR DATABASE URL>", | |
}; | |
firebase.initializeApp(config); | |
export default firebase; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment