Вы экспортируете класс без создания экземпляра. Вы должны сделать что-то вроде:
import React from 'react';
import firebase from "react-native-firebase";
class NewsFeed extends React.Component {
constructor() {
this.ref = firebase.firestore().collection('keys')
}
async load(id) {
const doc = await this.ref.doc(id).get()
if (doc.exists) {
return doc.data()
}
}
}
export default newsFeed = new NewsFeed();
Надеюсь, это поможет:)