Open
Description
Hi,
I'm trying to listen to a specific path changing via FirestackModule.
import { FirestackModule } from 'react-native-firestack'
const users = new FirestackModule('users', {firestack})
export default combineReducers({
users: users.reducer
})
Is there a way to just listen to /users/1
for example if I just need to listen to changes on that path? Can't find much documentation on FirestackModule, so hopefully someone can point me in the right direction. Thanks in advance.