React events
Options for managing incoming react events
All callbacks receive React events as first parameter, same as regular component handlers.
function SomeComponent() {
return <div onMouseDown={(event) => { /* ... */ }}>Some content</div>
}
Below you can find options helpful for managing those React events.
Persisting eventFiltering eventsLast updated
Was this helpful?