Prem Prakash Sharmapremprakashdev.hashnode.dev·Sep 5, 2024Exploring the React useTransition Hook: Full GuideReact's useTransition hook is a powerful tool introduced in React 18 as part of its concurrent rendering features. It enables developers to handle updates with better user experience by allowing certain state transitions to be marked as less urgent. ...React
고라니드로koranidro.hashnode.dev·Sep 3, 2024[React] 변화의 물결, 동시성 렌더링이 포스트는 React 버전 18.3.1을 기준으로 합니다. 동시성 렌더링은 18 버전부터 정식 도입된 새로운 메커니즘입니다. 이는 아직 불완전하지만, 많은 가능성을 보여주었습니다. Suspense, useDeferredValue 등이 그 결과물이지요. 하지만 그와 동시에 이전에 없던 많은 문제를 불러왔습니다. 이번 포스트에서는 이것이 어떻게 동작하고, 또 어느 부분이 문제가 되는지 알아보도록 하겠습니다. 어떻게 동작하는가 동시성 적용에 가장...32 readsconcurrent-rendering
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...28 readsReactReact
vikash choudharyimvikash.hashnode.dev·May 7, 2023Improving Performance with React's Experimental useTransition Hook in TypeScriptIntroduction: React is a popular JavaScript library for building user interfaces, and performance is a crucial aspect of creating responsive and engaging experiences for users. React's experimental Concurrent mode introduces the useTransition hook, w...React
Nikhil Kumar Patranikhilkumarpatra47.hashnode.dev·Feb 5, 2023React hooks - useReducer, useTransition, useDeferredValueIntroduction In my last blog, I explained about the useMemo, useCallback, React.memo. Now, we will see the use of useReducer, useTransition, and useDeferredValue. Before useReducer came along, the only way to manage complex state transition was to us...1 like·129 readsuseReducer