Adding new document with auto generated id
//imports
import { db } from "../../config/firebase.config";
import { collection, addDoc } from "firebase/firestore";
//code inside component
const addData = async () => {
collectionRef = collection(db, "collectionName")
payload = { whatever your payload is }
await addDoc(collectionRef, payload)
}