What is the difference between useRef and createRef?
useRef creates a mutable object that persists between renders in functional components, while createRef is used to create refs in class components and does not persist across renders.
#useRef #createRef #ReactJS