How to use React's forwardRef function
forwardRef is a helper function from React that allows us to forward a component's ref to another one.
Our task is to forward the ref that the Input component receives to the HTML input element.
We do that by wrapping the component in forwardRef. The...
omarsaade.hashnode.dev1 min read