What is useRef? And what are it's use cases?
Prerequisites
Basic knowledge of react hooks (useState, useEffect).
General understanding of react works.
What is useRef?
useRef is a React hook which takes an initial value and returns a mutable ref object.
Syntax of useRef:
const myRef=useRef(ini...
rakshith.hashnode.dev4 min read