React 18 introduced the new useEvent hook.
This new hook seems so great that i'm wondering when NOT to use it ?
Appart from the case where i need to explicitly control the referential stability of a callback (and in that case i would use useCallback), i do not see any situation where useCallback should be preferred over useEvent.
Do you know any "cons" about using useEvent over useCallback ?
Can i safely convert (nearly) all my useCallback to useEvent ?
Thanks !