Created
April 12, 2020 07:47
-
-
Save haldarmahesh/5860302718013c6c1084d053fe4973d2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 React from "react"; | |
import { useForm } from "react-hook-form"; | |
function onSubmitForm(formData) { | |
console.log("The status of formData", formData); | |
alert("Hi your phone number is: " + formData.phoneNumber); | |
} | |
export default function MyForm() { | |
const { register, handleSubmit, errors, watch } = useForm(); | |
console.log("ERR", errors); | |
const showDatePicker = watch("showDatePicker"); | |
return ( | |
<> | |
<h1> | |
Your phone number is: | |
<br /> {watch("phoneNumber")} | |
</h1> | |
<form onSubmit={handleSubmit(onSubmitForm)}> | |
<label> | |
Phone Number: | |
<input | |
type="text" | |
name="phoneNumber" | |
ref={register({ | |
required: { | |
value: true, | |
message: "Phone number is required", | |
}, | |
minLength: { | |
value: 12, | |
message: "Phone number should be minimum length of 12", | |
}, | |
})} | |
/> | |
</label> | |
<br /> | |
<label> | |
Show the Date picker: | |
<input type="checkbox" ref={register} name="showDatePicker" /> | |
</label> | |
<br /> | |
{showDatePicker && <input type="date" ref={register} name="dob" />} | |
<br /> | |
<input type="submit" value="Submit" /> | |
</form> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment