This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Description
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
const enhance = assemble(
branch(
() => true,
combine(
debug(),
renderComponent(Component)
),
withProps({someProp: 'hello'})
);
But if you add debug it logs {}
Is this expected?