-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
34 lines (26 loc) · 795 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React, {Component} from 'react';
import * as firebase from 'firebase';
import EntryPoint from './src';
// Initialize Firebase
const firebaseConfig = {
apiKey: "AIzaSyC4iaKRObc5VfHMlA0yTmlZWmXiwP3x8x8",
authDomain: "uganda-trees.firebaseapp.com",
databaseURL: "https://uganda-trees.firebaseio.com",
projectId: "uganda-trees",
storageBucket: "uganda-trees.appspot.com",
messagingSenderId: "825254498106",
appId: "1:825254498106:web:2f712ea491c7e9c0"
};
export const firebaseApp = firebase.initializeApp(firebaseConfig);
// export var dbRef = firebaseApp.database().ref();
export default class App extends Component {
constructor() {
super();
console.ignoredYellowBox = ['Setting a timer'];
}
render() {
return (
<EntryPoint />
);
}
}