Skip to content

Instantly share code, notes, and snippets.

@StevenJL
Created September 29, 2018 01:55
Show Gist options
  • Select an option

  • Save StevenJL/ea387132cecdf926f6af24766f33f9b2 to your computer and use it in GitHub Desktop.

Select an option

Save StevenJL/ea387132cecdf926f6af24766f33f9b2 to your computer and use it in GitHub Desktop.
const ButtonComponent = React.createClass({
getInitialState() {
return { message: "Auto-binded!" }
},
handleClick() {
console.log(this.state.message)
},
render() {
return < button onclick={this.handleClick} />
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment