Skip to content

Instantly share code, notes, and snippets.

@wuct
Created April 8, 2016 10:18
Show Gist options
  • Save wuct/882122a900e2a96d2c7eb4fd3d12f004 to your computer and use it in GitHub Desktop.
Save wuct/882122a900e2a96d2c7eb4fd3d12f004 to your computer and use it in GitHub Desktop.
Three types of HoCs
const hoc = BaseComponent =>
BaseComponent
const hoc = BaseComponent =>
() => <BaseComponent />
const hoc = BaseComponent =>
class extend React.Component {
render = () => <BaseComponent />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment