What Is The Use Of useImperativeHandle Hook In React ?
Answers (1)
Add AnswerThe useImperativeHandle Hook allows us to expose a value, state, or function inside a child component to the parent component.
In certain circumstances, we want our parent component to reach down to the child component, getting data that originates in the child component for its own use. We can achieve this type of data flow with the useImperativeHandle Hook.