klequis / coding-notebook

notes on coding issues
MIT License
0 stars 0 forks source link

React Hooks #14

Open klequis opened 3 years ago

klequis commented 3 years ago

useReducer

useCallback

useMemo

Returns a memorized value

That's all folks. It just saves you from recomputing something unless on of the values in the dependencies array changes. It is purely for performance.

useRef

useLayoutEffect

Same as useEffect but fires synchronously after all DOM mutations. Not often used.