Ryan Allred

Results 12 comments of Ryan Allred

Hey @tysoncadenhead! I'd love to get more examples in here. The repo is a CRA app that uses `microbundle` for the published copy (which looks at `/src/rehook/index.js` for entry). We...

Sorry for the late reply, I was out of town. For the case of `pure`, we should be using `React.memo()`. I'd like to push the limits of hooks and see...

Recompose is deprecated and hooks are a much better interface to reusable logic between components. The goal of rehook is to provide a path to reuse legacy recompose based code...

@covertbert That would be awesome. Thank you!

@covertbert I added those types for documentation in editor. I don't mind swapping them all out for better ones if we can have them.

This isn't specific to `react-navigation`. I ran into this problem with `react-native`'s `` component. Wrapping the Swipe List in a `PanGestureHandler` seems capture the touch before it gets to the...

@nezouse Ran into this as well. The issue comes from the `EventEmitter` implemented by `AbstractConnector` not always being a real `EventEmitter`. It will have _some_ properties of the Node `EventEmitter`...

Ok. Thank a lot. The same happens with: ``` javascript a={ set a:function(){} } ``` and ``` javascript a={ get a:function(){} } ```

Woah. My bad. Forget that comment was posted.

I need this too. For the time being this is seems to be a viable workaround: ```js const lang = 'en'; // get your locale const locale = numeral.locales[lang]; if...