testingsimplereactvalidatorwithhooks
1.0.0 • Public • Published Use of SimpleReactValidator in functional component using Hooks
- Initialize the validator
const [validator, showValidationMessage] = useValidator(customMessages, customValidator)
- Add validation rules under inputs
validator.message('password', password, 'required')
- 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)
}
Readme
Keywords
nonePackage Sidebar
Install
npm i testingsimplereactvalidatorwithhooks
Weekly Downloads