React Hooks Continued! — In this article, I will be going through more of the most common/basic hooks used in React! Specifically, we will be talking about useContext, useRef, and useReducer! useContext This hook allows you to utilize React’s Context API, which allows you to share data without having to annoyingly deal with props. You…