As a user, I should be able to delete a makeup look.
AC
WHEN the page loads
AND the user clicks the delete button from a look
THEN the look will be deleted
Dev Notes
[ ] make sure deleteLook axios call is being exorted from lookData in helpers
In Looks component:
[ ] import propTypes
[ ] put deleteLook in static Proptypes as a functio
[ ] create deleteLookEvent function
[ ] Manipulate domstring of look card in render: add event listener on delete button
In Home component
pass deleteLook function to home component, which will make the axios call that will delete the targeted card and call the getLooks function to show all remaining looks that haven't been deleted
Story
AC
WHEN the page loads AND the user clicks the delete button from a look THEN the look will be deleted
Dev Notes
In Looks component:
In Home component