'Clear all form field in react, using react hook forms
I am creating a login form and want to clear the form when form submitted.I am using react hook form ,here are my codes..
const onSubmit = (data) => {
const name = data.name;
const email = data.email;
const pass = data.password;
const confirmPass = data.confirmPassword;
console.log(data)
}
<form className="mt-6" id='signupForm' onSubmit={handleSubmit(onSubmit)}>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
