Answers for "react firebase add doc to collection"

0

react firebase add doc to collection

firebase
  .firestore()
  .collection("Users")
  .doc("mydoc")
  .collection("Activities")
  .doc("Database")
  .set({
    key: "1",
    value: "",
  })
  .then((ref) => { console.log(ref) });
Posted by: Guest on June-15-2021

Code answers related to "react firebase add doc to collection"

Code answers related to "Javascript"

Browse Popular Code Answers by Language