
Understanding the useRef React hook
Continuing our React hooks series, we will learn about the useRef React hook in this blog post. The useRef React hook is useful in the following two situations: Accessing DOM elements directly inside React Store state values that do not trigger re-renders and are persisted across re-renders Before we see...