Skip to content

Instantly share code, notes, and snippets.

View iancmyers's full-sized avatar

Ian Christian Myers iancmyers

View GitHub Profile
@iancmyers
iancmyers / Enhance.js
Last active August 29, 2015 14:26 — forked from sebmarkbage/Enhance.js
Higher-order Components
import { Component } from "React";
export var Enhance = ComposedComponent => class extends Component {
constructor() {
this.state = { data: null };
}
componentDidMount() {
this.setState({ data: 'Hello' });
}
render() {