DEV Community

Discussion on: Which React hooks do you use the most?

Collapse
 
techiesakthi profile image
Sakthisivaprakash

Mostly I use useState and useEffect with or Without dependency array. Also will use useRef,useCallback and useMemo at required scenarios.

Never write any Custom Hooks, instead the first option come to mind is writing custom utility functions as we working on Big project. 😄