When I try to add a listener to a React Native element, nothing happens. In my `update`: ```js sources.select('Button').addListener('onPress') .reducer(...) ``` In my `view`: ```js <Button title="Go" /> ``` It seems like recycle cannot select the `Button` element. Tried to figure it out, but can't find the reason.