Skip to content

Instantly share code, notes, and snippets.

@FermiDirak
Last active May 18, 2018 05:13
Show Gist options
  • Save FermiDirak/449c98299f20331d7fe890b942431a82 to your computer and use it in GitHub Desktop.
Save FermiDirak/449c98299f20331d7fe890b942431a82 to your computer and use it in GitHub Desktop.
class BuildingBlock extends React.Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
}
handleClick() {
console.log('click!');
}
render() {
return (
<button onClick={this.handleClick}/>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment