Skip to content

Instantly share code, notes, and snippets.

@amakhrov
Created May 17, 2018 17:29
Show Gist options
  • Save amakhrov/df7217845826331a8ed403dcc781647c to your computer and use it in GitHub Desktop.
Save amakhrov/df7217845826331a8ed403dcc781647c to your computer and use it in GitHub Desktop.
Context
class MyReactButton extends React.Component {
constructor() {
this.state = {name: ‘my-name’};
}
onClick() {
console.log(this.state.name);
}
render() {
return (
<button onClick={this.onClick}>
Click me!
</button>
);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment