DEV Community

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

Collapse
 
souksyp profile image
Souk Syp. • Edited

useState, useEffect and useContext for Firebase integration.
Sometimes useMemo for expensive computations (deriving a state for instance).

Otherwise, never happen to use more than that as for now.