Build an App using React JS and Firebase in 15 Minutes!!

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 พ.ย. 2024

ความคิดเห็น • 6

  • @traininguniverse
    @traininguniverse 6 หลายเดือนก่อน +1

    It works for me correctly. Thank You.😊

    • @traininguniverse
      @traininguniverse 6 หลายเดือนก่อน +1

      There could be more added option update:
      Here some example:
      async updateClick(id) {
      const updatedDescription = prompt("Enter the updated description:");
      if (!updatedDescription) return; // If user cancels the prompt
      const db = getFirestore(app);
      const notesRef = doc(db, 'notes', id);
      await setDoc(notesRef, { description: updatedDescription }, { merge: true });
      this.refreshNotes();
      }
      this.updateClick(note.id)}>Update Notes

  • @VenkatachalamRavindran
    @VenkatachalamRavindran ปีที่แล้ว +1

    Excellent video.

  • @croydon21H
    @croydon21H 11 หลายเดือนก่อน

    @8:27 is extends component, super props...old model ??

  • @kamrankhanofficials
    @kamrankhanofficials 11 หลายเดือนก่อน

    its not picking my data from database... although working properly.

  • @eduardonunez1514
    @eduardonunez1514 8 หลายเดือนก่อน +1

    Any github repo??