Guest User

Untitled

a guest
Mar 13th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import React, { Component } from 'react'
  2. ...
  3.  
  4. class UserCard extends Component {
  5.  
  6. constructor(props) {
  7. super(props);
  8.  
  9. this.state = {
  10. name: 'Akexorcist'
  11. }
  12.  
  13. this.onButtonClick = this.onButtonClick.bind(this);
  14. }
  15.  
  16. onButtonClick() {
  17. ...
  18. }
  19.  
  20. ...
  21. }
  22.  
  23. export default UserCard
Add Comment
Please, Sign In to add comment