Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Minimal higher order React Component
```
const hoc = C => class _hoc extends React.Component {
render() {
return <C { ...this.props }/>;
}
}
const hoc = C => function _hoc(props) {
return <C { ...props }/>;
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment