Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active March 30, 2020 17:03
Show Gist options
  • Select an option

  • Save akexorcist/d32ca97bf6e16013ed7de9fcf63266b8 to your computer and use it in GitHub Desktop.

Select an option

Save akexorcist/d32ca97bf6e16013ed7de9fcf63266b8 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
...
class UserCard extends Component {
constructor(props) {
super(props);
this.state = {
name: 'Akexorcist'
}
this.onButtonClick = this.onButtonClick.bind(this);
}
onButtonClick = () => {
...
}
...
}
export default UserCard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment