Chapter 7. Enhancing Components with Hooks
7.1 Introducing useEffect
7.1.1 The Dependency Array
7.1.2 Deep Checking Dependencies
7.1.3 When to useLayoutEffect
7.1.4 Rules to Follow with Hooks
7.1.5 Improving Code with useReducer
7.1.6 useReducer to Handle Complex State
7.1.7 Improving Component Performance
7.1.8 shouldComponentUpdate and PureComponent
7.1.9 When to Refactor