You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a user, I should be able to add a crew member to the team.
AC
WHEN a user is logged in AND clicks on the crew button THEN they will see a single add button at the top of the page AND that button will populate a form
User Story
As a user, I should be able to add a crew member to the team.
AC
WHEN a user is logged in
AND clicks on the crew button
THEN they will see a single add button at the top of the page
AND that button will populate a form
Dev Notes
addCrew button
addCrewForm()
use bootstrap form bootstrap form$('body').on('click', '.add-crew-form', addCrewForm)
addCrew()
that takes values from form and creates new food object$('body').on('click', '.submit-crew-form', addCrew)
* create
axios.post()``` commands to firebase to add to dataThe text was updated successfully, but these errors were encountered: