I want to change this Firebase V8 code to Firebase V9. I have tried to change this code to v9 in several ways, but unfortunately, all of them were failure:
useEffect(() => {
const unsubscribe = db.collection("chats").onSnapshot((snapshot) => {
setChats(
snapshot.docs.map((doc)=>({
id:doc.id,
data: doc.data(),
}))
)
);
return unsubscribe;
}, [])