I have a component that contains this:
<KeyHandler
keyEventName={KEYPRESS}
keyValue='Enter'
onKeyHandle={onKeyHandler}
/>
So, when i make multiple instances of my React component that contains this, I'm finding that onKeyHandler fires for ALL when ONE of them receives a keypress event. Any idea why this is happening or how to prevent it?