Created
September 29, 2021 22:22
-
-
Save Kellswork/f46c466891b7eda0eb0733d20b0cf36f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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