Skip to content

Instantly share code, notes, and snippets.

@Kellswork
Created September 29, 2021 22:22
Show Gist options
  • Save Kellswork/f46c466891b7eda0eb0733d20b0cf36f to your computer and use it in GitHub Desktop.
Save Kellswork/f46c466891b7eda0eb0733d20b0cf36f to your computer and use it in GitHub Desktop.
import { useState } from "react";
export default function UserForm({addContact}) {
const handleSubmit = (event) => {
event.preventDefault();
addContact(contactInfo);
setContactInfo({ name: "", email: "", phonenumber: "" });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment