Today you are going to be tasked with building a small app that will hopefully help build / solidify some of your react chops.
The app should allow the user to add grocery items to a grocery list. A user should be able to add a grocery list item to the list via an input field and view each grocery list item on the dom.
- There should be an input field
- There should be a submit button
- There should be a 'grocery list' section
-
The user should be able to type a list item into the input field
- as the user types into the input field the application's state should change based on the value of the input field
-
When the user clicks the submit button it should add the item to the grocery list portion of the dom
- each list item should have a delete button
- when the delete button is clicked it is deleted from the dom