I\'m currently very amazed about the use cases of the new react hooks API and what you can possibly do with it.
A question that came up while experimenting was how e
You are right, in large applications this can lead to performance issues. Binding the handler before you pass it to the component avoids that the child component might does an extra re-rendering.
Both are equivalent. The e argument representing the React event, while with an arrow function, we have to pass it explicitly, with bind any arguments are automatically forwarded.