Refer JavaScript events for more description.

Untitled

Untitled

The events remain same while the casing turns to be camel case ( camelCase ).

<button onClick={() => alert('Hello')}>Say Hello</button>

The events are provided wither with arrow functions or full-fledged functions to capture a event occurred.

<button onClick={() => alert('Hello', name)}>Click Me</button>