Understanding useRef for Efficient DOM Manipulation in React
In React, useRef stores a reference to a value that can be mutated without causing re-rendering of the component.
While the value can be mutated, it should not occur during the rendering phase. Instead, mutations should happen in response to user act...
muralisingh.hashnode.dev3 min read