React: Hooks - useRef
useRef 可以直接用來 修改DOM節點屬性 和 儲存可變值(mutable value);更棒的是,使用 useRef 不僅會hold住參照值,也不會造成額外的render。
useRef returns a mutable ref object whose .current property is initialized to the passed argument (initialValue). The returned object will persist for the ful...
urlun0404.hashnode.dev1 min read