How to you pass an event handler to a React component?
Pass event handlers and other functions as props to child components
How do you add custom event handlers to a React component?
you would set up the custom event handler as a prop of your component then pass the custom event handler to an event like onClick. Then each time you create a new instance of the component, you can specify what event it should watch for.
What is the naming convention for custom event handlers?
custom event names start with on followed by the name of the event. i.e onClick, onSubmit, onMouseOver
What are some custom events a component may expose?