Skip to content

Instantly share code, notes, and snippets.

@jokamjohn
Created May 17, 2018 07:49
Show Gist options
  • Save jokamjohn/6a227aaa08a7f40ba2e9dc2022d89766 to your computer and use it in GitHub Desktop.
Save jokamjohn/6a227aaa08a7f40ba2e9dc2022d89766 to your computer and use it in GitHub Desktop.
onSubmit = event => {
event.preventDefault();
const name = this.name.value;
const age = this.age.value;
const info = {name: name, age: age};
const data = [...this.state.data, info];
this.setState({
data: data
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment