5
"UseRef" ve "createRef" arasındaki fark nedir?
Karşılaştığım zaman kancaların belgelerine bakıyordum useRef. Örneğine bakarken… function TextInputWithFocusButton() { const inputEl = useRef(null); const onButtonClick = () => { // `current` points to the mounted text input element inputEl.current.focus(); }; return ( <> <input ref={inputEl} type="text" /> <button onClick={onButtonClick}>Focus the input</button> </> ); } … İle useRefdeğiştirilebilir gibi …