reassemble icon indicating copy to clipboard operation
reassemble copied to clipboard

Fast Library for the Composition of React Higher-Order-Components

Results 4 reassemble issues
Sort by recently updated
recently updated
newest added

`recompose`'s `compose` allows you to compose any HoC (or function for that matter) Transitioning from recompose to reassemble is actually more complicated because of this If you have code that...

For instance, how do you actually use the lifecycle composables?

I'm trying to get this working with a project i'm working on that uses Typescript 2.4. I'm seeing this issue: ```js import { connect } from 'react-redux'; import { assemble,...

```jsx const enhance = assemble( branch( () => true, renderComponent(Component) ), withProps({someProp: 'hello'}) ); ``` In the above example, `Component` is rendered with `someProp`. The same applies if you use...