Closed fahad19 closed 6 years ago
The compose function should take a bunch of other functions as arguments, and return a combined single version:
compose
import { compose } from 'frint-props'; const composedFunc = compose( withFoo(), withBar() ); const generatedProps$ = composedFunc(app, parentPropsIfAny$);
Depends on #4
The
compose
function should take a bunch of other functions as arguments, and return a combined single version: