DEV Community

Discussion on: useEffect missing dependency, need advice

Collapse
 
r3wt profile image
Garrett R. Morris

Ironically this is exactly what i ended up doing. Thanks for sharing though, as someone who is new to hooks, its very helpful to learn about useCallback(). i think now i will refactor much of my code to take advantage of this feature.

Collapse
 
sabbin profile image
Sabin Pandelovitch

useCallback and useMemo are very useful to know. I think I'll post something on this subject as it's good to know when and where to use them