Removing a listener from firestorm
let unsub = db.collection('cities').onSnapshot(() => {
});
// ...
// Stop listening for changes
unsub();In React hooks
Last updated
Was this helpful?
let unsub = db.collection('cities').onSnapshot(() => {
});
// ...
// Stop listening for changes
unsub();Last updated
Was this helpful?
Was this helpful?