Where do I specify the name of the document that i want to create ?
const userProjectsColRef = collection(db, 'users');
const newProjectDocRef = await addDoc(
userProjectsColRef,
generalData
);
Where do I specify the name of the document that i want to create ?
const userProjectsColRef = collection(db, 'users');
const newProjectDocRef = await addDoc(
userProjectsColRef,
generalData
);