react-hook-form not working when onSubmit its called – Reactjs
My react-hook-form is not working when onSubmit is called. Here is where my problem comes from I assume: const onSubmit = (data) =>{ console.log(data); alert("Reserve Successful") reset() } return ( <div className={styles.Reserve} id="form"> <form onSubmit={handleSubmit(onSubmit)}> The full code: import styles…