Skip to content

Instantly share code, notes, and snippets.

@iamdtang
Created February 2, 2017 23:59
Show Gist options
  • Save iamdtang/1cae7bb728eea4519c7ee54f27215295 to your computer and use it in GitHub Desktop.
Save iamdtang/1cae7bb728eea4519c7ee54f27215295 to your computer and use it in GitHub Desktop.
class App extends Component {
handleClick = task(function*(component) {
component.setState({ label: component.props.pending });
yield component.props.onClick();
component.setState({ label: component.props.default });
})
render() {
...
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment