```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 `omitProps` ```jsx const enhance = assemble( branch( () => true, combine( debug(), renderComponent(Component) ), withProps({someProp: 'hello'}) ); ``` But if you add `debug` it logs `{}` Is this expected?
In the above example,
Componentis rendered withsomeProp.The same applies if you use
omitPropsBut if you add
debugit logs{}Is this expected?