useRef Hook: The Silent Helper
useRef is a hook that gives you a way to persist values across renders without triggering re-renders.
It's like storing a value you can access at any point — but React won’t re-render when that va...