I'm using the NativeEventEmitter in both the parent and child to handle the same specific keyboard event (when F6 is pressed) in the parent and the child components. They both have their own, different callbacks to handle when this when this key is pressed.
When it's pressed in the child, I don't want the parent's listener to fire. There isn't a stopPropogation method in React Native like there is in standard React.
<Parent>
<Child/>
</Parent>