How to you pass an event handler to a React component?
You add a function to the component declaration and then can add it to the properties of the component
What is the naming convention for event handlers?
function handle+name () {
}.
What are some custom event handler props a component may wish to define?
onCustomClick/hover/dblClick/unhover/etc.
What is the naming convention for custom event handler props?
on+name