Skip to content

Instantly share code, notes, and snippets.

@adamklingbaum
Last active November 15, 2021 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamklingbaum/26f9c448cc4b30958a809c2a3c7d6130 to your computer and use it in GitHub Desktop.
Save adamklingbaum/26f9c448cc4b30958a809c2a3c7d6130 to your computer and use it in GitHub Desktop.
export default function ValidatedForm() {
...
const handleChange = (event) => {
const newFormData = { ...formData };
newFormData[event.target.name] = event.target.value;
setFormData(newFormData);
};
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment