Nitish Jhanitishjha.hashnode.dev·Dec 15, 2024Rendering in ReactWhat is rendering in react ? React rendering is the process of converting react elements into UI elements that can be displayed on screen . The react elements are simple javascript object which contains the structure which we want to display / render...React
mahesh samagandimaheshsamagandi.hashnode.dev·Dec 1, 2024React Rendering and Internal Working: A Detailed ExplorationReact, a popular JavaScript library for building user interfaces, is renowned for its efficiency in rendering changes and declarative programming style. At the core of React’s performance lies its rendering mechanisms, reconciliation process, and sta...React
Krishkrishviradiya.hashnode.dev·Nov 10, 2024Understanding React Re-Rendering: How It Affects Performance and Better SolutionsWhen working with React, especially in complex applications with multiple components, managing re-renders becomes essential. Picture this: you've built a feature-rich component with lots of nested components and heavy calculations. Then, you’re asked...1 like·50 readsReact
Ankur Kashyapankur171.hashnode.dev·Feb 5, 2024Batching of multiple render methodsimport React from 'react'; import UserClass from "./UserClass"; import UserClass2 from "./UserClass2"; const userData = [ { name: "Ankur Kashyap", location: "Bengaluru", contact: "abc" }, { name: "Manjulik...batching render method
Divyesh Godhanidivyeshgodhani.hashnode.dev·Jun 27, 2023Understanding React Rendering: A Step-by-Step ExplanationIn React, rendering refers to the process of converting your React components into a visual representation on the screen. The rendering process in React follows a series of steps. Let's go through them step by step: Component Hierarchy: In React, yo...32 readsReact rendering
leetrueleetrue.hashnode.dev·May 9, 2023React 에서 렌더링이란.👩🏻🌾 React 파먹기 - Rendering 최근들어 개념적인 부분, 원리적인 부분들을 공부하다보니 계속 ‘왜?’라는 생각을 하게 되었다. 지금까지 호기심이 많이 없었던게 문제였기도 하겠지만 말이다. 그래서 늦었지만 내가 주로 사용하는 React 를 조금 더 자세히 이해해야겠다는 욕심이 들어서 공부를 시작했다. 한 번에 너무 많은 것을 하면 금방 질릴 것을 알기에, 조금씩 깊게 파보려고 한다. 🥲 나는 렌더링의 개념을 설명할 줄 아는...ReactReact
leetrueleetrue.hashnode.dev·Mar 8, 2023React 렌더링 최적화 기법🚘 React 렌더링 최적화 기법 🖐🏻 들어가며, 간단한 투두 리스트 만들기를 하다보면 화면이 바로바로 변경됨이 확인되기 때문에 렌더링 최적화에 대해 크게 고민하거나 필요성에 대해 느낄 일이 많이 없다. 하지만 조금이라도 데이터가 많아지거나 프로젝트가 무거워지게 되면 초기 화면 렌더링 시간이 느려지는 것 뿐만 아니라 특정 페이지에서 화면 렌더링이 느림에 따른 불편한 장면들을 많이 볼 수 있게 된다. 이런 부분들이 내가 아닌 내가 만든 서...67 readsReactReact