Nghia Tieucswithtieu.hashnode.dev·Jul 1, 2024Q6. Giải thích về forwardRef và useImperativeHandle trong React Native?forwardRef trong React được sử dụng để chuyển tiếp một ref qua một component tới một element con. Điều này hữu ích khi bạn cần truy cập trực tiếp đến một DOM node hoặc một instance của một component con từ một component cha, mà không muốn phá vỡ tính...DiscussPhỏng vấn react nativeuseForwardRef
Abeer Abdul Ahadabeer.hashnode.dev·Jun 12, 2024Crucial React Hooks That Are Less UnderstoodIntroduction As React has become the top choice for building web applications, it's important to master all the concepts and topics that makes learning react incomplete without. If you have ever studied react for at least once, I am sure you know tha...Discuss·28 readsReactReact
Ted Leeted-projects.com·May 3, 2024[번역] React useImperativeHandle() 은 어떻게 동작하나요?영문 블로그 글을 번역했습니다. 허가를 받으면 시리즈를 이어갈 예정입니다.원문링크: https://jser.dev/react/2021/12/25/how-does-useImperativeHandle-work ℹ️React Internals Deep Dive 에피소드 12, 유튜브에서 제가 설명하는 것을 시청해주세요. ⚠React@18.2.0기준, 최신 버전에서는 구현이 변경되었을 수 있습니다. 💬 역자 주석: Jser의 코멘트는 ❗❗로 표...DiscussReact Internals Deep Dive 번역 시리즈react internals
Prajwal Vishal Jainprajwaljain.hashnode.dev·Mar 31, 2024Tinkering with useImperativeHandleThis is a small blog informing about my learnings after tinkering with useImperativeHandle. One fine day at work, I was asked to implement a fix and while going through the codebase I came across this hook. Until this point, even though I have been u...Discuss·10 likes·140 readsReact
Shadrack Opokuslim-shaeddy.hashnode.dev·Jul 4, 2023The Underrated React Hooks: Unleashing the Power of useImperativeHandle (Part 1)React hooks have revolutionized the way we handle state and side effects in React applications. While popular hooks like useState and useEffect receive well-deserved attention, there are hidden gems that often go unnoticed. In this article, we'll shi...DiscussReact
Paul Sajesaje.hashnode.dev·May 24, 2023Enhancing React Refs with useImperativeHandle: A Guide to Customizing Ref ValuesWhat is useImperativeHandle? The useImperativeHandle hook is a React hook that allows you to customize the value returned from a forwarded ref. This can be useful for a variety of reasons, such as adding new methods to a ref, or changing the behavior...Discuss·37 readsReact Hooks - All You Need To KnowReact
Waqas Khanwaqasblogs.hashnode.dev·Apr 18, 2023Breaking the Rules with useImperativeHandle Hook in ReactIntro: In React, a parent component passes props down to a child component, and if the parent component needs to call a function defined in the child component, it typically must be defined in the parent component and then passed down. However, there...Discuss·1 like·165 reads2Articles1Week
Nikhil Kumar Patranikhilkumarpatra47.hashnode.dev·Feb 16, 2023React hooks - useImperativeHandleIntroduction useImperativeHandle is one of those hooks that developers don't usually use but it has its rare use cases that we will go through in this blog and try to understand how it is used. The useImperativeHandle Hook If you have been working wi...Discuss·85 readsReact
Arjun VCblogsbyarjun.hashnode.dev·Jul 13, 2022How to update Child's state from Parent in React.So as you have made it here, let me assume that you know React to an extent that I don't have to explain what a state is or how props are passed. If you aren't confident enough, head on to reactjs.org and get started with the basics of React. Let's g...Discuss·12 likes·592 readsReact