When a ref.current property changes, does React re-render the component?
No, when you change the ref.current property, React does not re-render your component. React is not aware of when you modify a ref because a ref is a plain JavaScript object that exists outside of React's rendering system. While useRef provides a mutable value that persists across renders, changes to that value don't trigger re-renders.