Created
May 12, 2018 07:30
-
-
Save FermiDirak/4b57464b4e68ed91a37ae9f9ac4606a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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