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