How to you pass an event handler to a React component?
you can pass a function into the onClick attribute, pass down props
How do you add custom event handlers to a React component?
defines methods on the component class that handles the event
What is the naming convention for custom event handlers?
onXxx, where Xxx is the name of the event.
What are some custom events a component may expose?
onBlur, onFocus, onSubmit, etc.