react-firebase
react-firebase copied to clipboard
React bindings for Firebase
Some initial ideas to fix #43 Feedback welcome!
hi! this is my crack at [this issue](https://github.com/unfold/react-firebase/issues/50) as i needed it for my own project. basically its a minimal clone of your `connect` function modified to work with firestore....
There is currently no way of capturing errors from database reads, for example if permission is denied. We could add a handler to https://github.com/unfold/react-firebase/blob/master/src/connect.js#L106 ```js subscriptionRef.on('value', update, onError) ``` But...