Tag

useImperativeHandle

0 views collected around this technical thread.

Code Mala Tang
Code Mala Tang
Jul 5, 2024 · Frontend Development

Mastering React refs: When and How to Use forwardRef, useRef, and useImperativeHandle

This article explains how React refs work with native elements, class components, and function components, demonstrates using useRef, forwardRef, and useImperativeHandle, and discusses the benefits, drawbacks, and alternative patterns for exposing component instances and DOM nodes.

ReactforwardReffrontend
0 likes · 10 min read
Mastering React refs: When and How to Use forwardRef, useRef, and useImperativeHandle
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 8, 2024 · Frontend Development

Sharing State Between Parent and Child Components in React: useImperativeHandle vs useShareState Hook

This article examines the common React modal communication problem, compares the conventional controlled‑component callback approach with the useImperativeHandle solution, and introduces a novel pair of hooks (useShareState and useShareValue) that enable seamless state sharing between parent and child components.

Custom HooksReactfrontend
0 likes · 19 min read
Sharing State Between Parent and Child Components in React: useImperativeHandle vs useShareState Hook