User input is an important part of any web application, and the Issue Tracker application is no different. We created a form and user input to create a new issue. But it was very rudimentary, and it did not demonstrate how forms are supposed to be dealt with in React.
In this chapter, we’ll start taking in a lot more user input. We will convert the hard-coded filter to something more flexible with user input, and then we’ll fill in the Edit page with a form. Finally, we’ll add the ability to delete issues from the Issue List page, though this is not necessarily a form.
To be able to ...