Guest User

Untitled

a guest
Jul 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. withFormik({
  2. // ...
  3. validate: createValidator({
  4. title: ['required', rules.minLength(3), rules.maxLength(400), 'commonText'],
  5. price: ['required', 'price', price => price === 1000 ? 'Price can not be 1000' : null]
  6. }),
  7. // ...
  8. })
Add Comment
Please, Sign In to add comment