Guest User

Untitled

a guest
Jun 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. state = {
  2. list: []
  3. };
  4.  
  5. clickBtn = () => {
  6. this.state.list.push({
  7. id: Math.random(),
  8. name: randomStr.generate(4)
  9. });
  10. this.setState(this.state);
  11. };
Add Comment
Please, Sign In to add comment