This repository was archived by the owner on Sep 7, 2022. It is now read-only.

Description
If you render:
<Component onClick={handler} />
The handler will get rebound for every render because removeEventListener() isn't removing the handler. This is probably because of the case-sensitivity of event names. We should be using eventNameLc for all references to the event internally.