Listing 7-3: Setting an event listener in a React component
function MyForm(props){
return (
<form onSubmit={props.handleSubmit}>
<input type="text" id="fullName" />
<input type="text" id="phoneNumber" />
<button>Submit</button>
</form>
);
}
export default MyForm;
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.