Skip to content

Instantly share code, notes, and snippets.

@chrisryana
Last active March 20, 2020 15:09
Show Gist options
  • Save chrisryana/3dcedc14814cd46ce4e622ff6a1a4d57 to your computer and use it in GitHub Desktop.
Save chrisryana/3dcedc14814cd46ce4e622ff6a1a4d57 to your computer and use it in GitHub Desktop.
Обёртка для hoc
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