私はこれを持っています
const CompA = () => {
let _input;
return (
<input ref={el => _input = el} type="text" />
);
}
この
const CompB = () => {
const _input = useRef(null);
return (
<input ref={_input} type="text" />
);
}
Two_input
はinput
タグの ref オブジェクトで、それらの違いがわかりません。
私の質問は次のとおりです。2つの違いは何ですか。_input
どちら_input
が優れていますか?