You probably don't need that useCallback call
useCallback for those of you who may not know is a hook that let's us cache our functions. Now what that means if we can "save" the function. Let me break that down:
When our components re-render React creates new functions, nothing in the function ...
glamboyosa.hashnode.dev