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

Поділитися
Вставка
  • Опубліковано 9 лис 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 ??

  • @eduardonunez1514
    @eduardonunez1514 8 місяців тому +1

    Any github repo??

  • @kamrankhanofficials
    @kamrankhanofficials Рік тому

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