Usually when we use <input />
field in html, we get a callback function such as <input onChange = {(event) => console.log(event.target.value)}
How is this event
argument passed back to us?
I am trying to do something similar, where I use a custom hook that, when called, does some other logic, and then can return back callback functions and inject arguments into them. For example:
const hello = useHello({
arg1 : 'person name',
onSuccess : (response) => {
// I can now use the response
}
});