yarn react-hook-form 3.0.0
Version 3.0.0

latest releases: 7.51.4, 7.51.3, 7.51.2...
5 years ago

React Hook Form return a new formState: Object which contain the following information

  • dirty: when user interactive any fields
  • touched: what are the fields have interacted
  • isSubmitted: whether the form have been triggered with submitting

example:

const { formState: { dirty, touched, isSubmitted} } = useForm();

Don't miss a new react-hook-form release

NewReleases is sending notifications on new releases.