1.0.0 • Published 6 years ago

testingsimplereactvalidatorwithhooks v1.0.0

Weekly downloads
5
License
-
Repository
-
Last release
6 years ago

Use of SimpleReactValidator in functional component using Hooks

Usage

  1. Initialize the validator
  const [validator, showValidationMessage] = useValidator(customMessages, customValidator)
  1. Add validation rules under inputs
  validator.message('password', password, 'required')
  1. Check if validation passes and turn on message
  if (validator.allValid()) {
    console.log('Submit Data')
  } else {
    // turn on validation message and re-render
    showValidationMessage(true)
  }