Skip to content

Instantly share code, notes, and snippets.

@john1jan
Created March 20, 2017 13:22
Show Gist options
  • Save john1jan/43d4003d4602c65a01ec8aaa8d1c7b25 to your computer and use it in GitHub Desktop.
Save john1jan/43d4003d4602c65a01ec8aaa8d1c7b25 to your computer and use it in GitHub Desktop.
ArrowSample
var Sample = React.createClass({
printMars(message) {
console.log("Hello " + message);
},
render() {
return (
<div>
<input type="button" value="Print Mars" onClick={() => this.printMars("Mars")} />
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment