Get realtime doc data

observe changes on docs

// call unsubBook() to stop observing
const unsubBook = onSnapshot(bookRef, 
	// snapshot callback re-run with every change
	(snapshot) => {
		// this is one doc
		console.log(snapshot)

		// this is doc data and id
		console.log(snapshot.data(), snapshot.id)

		// this use the metadata to detect from where doc came
		// { fromCach: true, hasPendingWrite: true }
		console.log(snapshot.metadata)
	},
	// optional error handler
	(errr) => console.error(errr.message)
)