Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Created May 12, 2016 10:37
Show Gist options
  • Save RafalFilipek/64e6a79b4358c996c86429ae89a16b13 to your computer and use it in GitHub Desktop.
Save RafalFilipek/64e6a79b4358c996c86429ae89a16b13 to your computer and use it in GitHub Desktop.
bind
class Foo extends React.Component {
state = {}
bar = (i) => {
this.setState({ a: i })
}
render() {
return <Biz onClick={this.bar} />
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment