react-with-stable icon indicating copy to clipboard operation
react-with-stable copied to clipboard

React HOC provides stable identity for inline callbacks

Results 2 react-with-stable issues
Sort by recently updated
recently updated
newest added

This increases the type safety by requiring the prop key names to match the interface of the component. This makes refactoring components safer

Hi. I need to wrap a component into forwardRef() and want to also use withStable(). I tried to to this way: ``` const Button = forwardRef((props, ref) => { .......