ReactのuseRefでappendChildができません
const testRef = useRef<HTMLDivElement>(); const input = document.createElement("input"); return <div ref={testRef}></div>
これだとエラーは出ないのですが、
document.body.appendChild(input)
これだとエラーが出ます。
testRef.current.appendChild(input)
何かuseRefで定義した要素に別の要素を追加する方法はありませんか?
> これだとエラーが出ます。
どこにそのコードを書き足して、どのようなエラーが出たのですか?