What is the difference between HTML and React event handling?
In HTML, the attribute name is in all lowercase and is given a string invoking a function defined somewhere: <button onclick="handleClick()"></button> In React, the attribute name is camelCase and are passed the function reference inside curly braces...
