React Hooks: useRef
1. Definition
useRef is a built-in React hook that accepts one argument as the initial value and returns a reference (aka ref).
A reference is an object having a special property current
There are two main uses of useRef;
Accessing the DOM nodes or...
blog.furkanozbek.com2 min read