useRef returns a mutable container { current: ... } that persists across renders but, crucially, changing it does NOT trigger a re-render. Two distinct uses:
1. Access a DOM node
jsx
() {
inputRef = ();
( {
inputRef..();
}, []);
;
}
