Hooks API
↔ React API to make React more Functional
Hook
Specialized Function Functionally extends FC with Lifecycle Method & persistent state
Custom Hook
user defined Hook to consume Library Hook & reuse stateful logic
Stateful Hook
(typeof) Hook to add state to FC
Effect Hook
(typeof) Hook to run Effect inside Component at different stages of Component Lifecycle
Memoizing Hook
(typeof) Hook to Memoize for better perf by avoid repeat calculations
Library Hook
(typeof) advanced Hook for use in larger component libraries & modules
Deps Array
Deps[] to pass as last arg to Trigger Hook