parent
a89e741581
commit
2ac339d846
|
@ -69,14 +69,16 @@ import firebase from 'react-native-firebase';
|
||||||
|
|
||||||
firebase.firestore()
|
firebase.firestore()
|
||||||
.doc('posts/posts1')
|
.doc('posts/posts1')
|
||||||
.get((documentSnapshot) => {
|
.get()
|
||||||
|
.then((documentSnapshot) => {
|
||||||
const value = documentSnapshot.data();
|
const value = documentSnapshot.data();
|
||||||
});
|
});
|
||||||
|
|
||||||
firebase.firestore()
|
firebase.firestore()
|
||||||
.collection('posts')
|
.collection('posts')
|
||||||
.doc('posts1')
|
.doc('posts1')
|
||||||
.get((documentSnapshot) => {
|
.get()
|
||||||
|
.then((documentSnapshot) => {
|
||||||
const value = documentSnapshot.data();
|
const value = documentSnapshot.data();
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue