Last active
March 20, 2020 15:09
-
-
Save chrisryana/3dcedc14814cd46ce4e622ff6a1a4d57 to your computer and use it in GitHub Desktop.
Обёртка для hoc
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 compose = (...hocs) => WrappedComponent => hocs.reduce((acc, hoc) => hoc(acc), WrappedComponent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment