Last time we touched on React Hooks we looked at using the State Hook. This week let’s take a look at using the Effect Hook. As we know, data fetching and manually changing the DOM in React components are examples of “side effects.” The useEffect Hook is combining the componentDidMount…