Created
November 17, 2017 13:23
-
-
Save alexbeletsky/9c92e6da643d9cd7b19f8a12e7ee5c29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function composeComponents(component, wrappers = []) { | |
return wrappers.reduce((c, wrapper) => wrapper(c), component); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment