As a user, I should be able to delete my note(s) on a building.
AC
WHEN the user clicks on the delete button for their note on a building card,
THEN the note should delete from the page
AND the note should delete in firebase
Development
Make an axios delete request which lives in notesData file in the helpers folder.
In singleNote component make the delete button.
In buildingCard component, make a function to call the axios delete request for the selected note.
User Story
As a user, I should be able to delete my note(s) on a building.
AC
WHEN the user clicks on the delete button for their note on a building card, THEN the note should delete from the page AND the note should delete in firebase
Development