Created
September 7, 2019 08:17
-
-
Save Furkan-Gulsen/40a397fa21c8d0bdb4d3e134fcdfa6cd to your computer and use it in GitHub Desktop.
Firebase Config
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"; | |
import { FirebaseConfig } from "../config/keys"; | |
firebase.initializeApp(FirebaseConfig); | |
const databaseRef = firebase.database().ref(); | |
export const todosRef = databaseRef.child("todos"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment