Skip to content

Instantly share code, notes, and snippets.

@kvendrik
Last active April 9, 2019 11:55
Show Gist options
  • Save kvendrik/ede944d10b39089029ff1e5084d3b836 to your computer and use it in GitHub Desktop.
Save kvendrik/ede944d10b39089029ff1e5084d3b836 to your computer and use it in GitHub Desktop.
Medium <Button /> Example
class Button extends React.PureComponent {
  render() {
  return <button onClick={this.handleClick} />;
  }
 
  @bind
  handleClick() {
// do things
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment