Created
December 3, 2017 16:12
-
-
Save MicroBenz/4e4d0dde0d6a09d8ff8f5be914a8e917 to your computer and use it in GitHub Desktop.
Recompose
This file contains 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
const composedHoc = compose(hoc1, hoc2, hoc3) | |
// Same as | |
const composedHoc = BaseComponent => hoc1(hoc2(hoc3(BaseComponent))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment