Skip to content

Instantly share code, notes, and snippets.

@fidaay
fidaay / api-form-submit.js
Created March 7, 2021 19:26 — forked from whoisryosuke/api-form-submit.js
React - Handling forms and submitting POST data to API -- @see: https://reactjs.org/docs/forms.html
class NameForm extends React.Component {
constructor(props) {
super(props);
this.state = { name: '' };
}
handleChange = (event) => {
this.setState({[event.target.name]: event.target.value});
}