Skip to content

Instantly share code, notes, and snippets.

@FermiDirak
Created May 12, 2018 07:30
Show Gist options
  • Save FermiDirak/4b57464b4e68ed91a37ae9f9ac4606a2 to your computer and use it in GitHub Desktop.
Save FermiDirak/4b57464b4e68ed91a37ae9f9ac4606a2 to your computer and use it in GitHub Desktop.
class BuildingBlock extends React.Component {
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