react-hook-form 3.0.0
[3.0.0] - 2019-04-21
Added
React Hook Form return a new formState: Object which contain the following information
dirty: when user interactive any fieldstouched: what are the fields have interactedisSubmitted: whether the form have been triggered with submitting
const {
formState: { dirty, touched, isSubmitted },
} = useForm();