formik-observer
formik-observer copied to clipboard
It would be nice to have also other events to hook up, like `onBlur`. I didn't think that much about the API but it could look something like this: ```jsx...
`onChange` is being called multiple times after submitting the form I propose to check diff of `values` instead of all formik object in https://github.com/ramitos/formik-observer/blob/master/src/index.js#L19
I think we can do something like this to prevent calling of onChange multiple times.. Let me know your thoughts ``` import React from 'react'; import { debounce, isEqual }...