Skip to content

Instantly share code, notes, and snippets.

@chnbohwr
Last active June 20, 2018 02:20
Show Gist options
  • Save chnbohwr/74374774115005615be65ef2bd750169 to your computer and use it in GitHub Desktop.
Save chnbohwr/74374774115005615be65ef2bd750169 to your computer and use it in GitHub Desktop.
state = {
list: []
};
clickBtn = () => {
this.state.list.push({
id: Math.random(),
name: randomStr.generate(4)
});
this.setState(this.state);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment