*変更しても再レンダーはトリガされません(state 変数は、変更すると再レンダーがトリガされます)。
*保存された情報は、コンポーネントのインスタンスごとに固有です(コンポーネントの外側で定義された変数は、コンポーネントのインスタンス間で共有されます)。
*[https://zenn.dev/tns_00/articles/react-typescript-form-error-of-value TypeScriptでエラーの場合]
<pre>
import { useRef } from 'react';
const txtKeyword = useRef<HTMLInputElement>(null);console.log(`txtKeyword.current.value:${txtKeyword.current?.value}`);
:
<<input type="text" ref={txtKeyword} ../>>
</pre>