Handling Forms
With most web applications, you will have some kind of a form, a way for your user to communicate with the application. In the case of our application, we need to set up a form for our search functionality.
We'll cover the following...
We'll cover the following...
Setting up the keyword search form
First, you need to declare your form with the form tag in your JSX. You want your search upfront and center when a user loads the site. For this reason, you will place your <form> tag and its contents in the index.js file, which renders your homepage, so place an input tag inside the form tag.
onChange event
Now you can add an onChange attribute to the input tag. This listens to any changes to that element. Specifically, you want to know when the text being typed in the input is changed.
Inside the onChange event, you will place a console.log to ...