Skip to content

Instantly share code, notes, and snippets.

@john1jan
Created March 20, 2017 14:51
Show Gist options
  • Save john1jan/00e8f157ea45383aa5183795e22d7e4c to your computer and use it in GitHub Desktop.
Save john1jan/00e8f157ea45383aa5183795e22d7e4c to your computer and use it in GitHub Desktop.
ES6Sample
class App extends React.Component {
constructor(props) {
super(props);
this.state = { message: 'Hello World' };
}
render() {
return <div>
<p> Binding Revealed</p>
<input type="button" value="Print" onClick={this.print} />
<Sample />
</div>
}
print() {
console.log(this.state.message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment