Ankur Kashyapankur171.hashnode.dev·Feb 5, 2024Render method and ReconciliationBefore Reconciliation, render() method is called. render() method in React is responsible for describing what the UI should look like based on the current state and props. When the render() method is called, it returns a Virtual DOM representation of...render
Faysal Ahammedfahammed.hashnode.dev·May 27, 2023রিয়েক্ট লাইব্রেরির রেন্ডারিং কৌশলআসসালামু আলাইকুম, রিয়েক্ট লাইব্রেরির রেন্ডারিং কৌশল এর উপর এটি আমার প্রথম আর্টিকেল। এই আর্টিকেল সিরিজে আমরা একটি রিয়েক্ট অ্যাপ্লিকেশন কখন কিভাবে রেন্ডার-রিরেন্ডার হয়, কিভাবে আমরা এর রেন্ডারিং অপ্টিমাইজ করতে পারি ইত্যাদি বিষয় নিয়ে ধাপে ধাপে আলোচনা কর...2 likes·94 readsReactReact
Abhi Jainstrongbase.hashnode.dev·Mar 23, 2023How React Handles Rendering?Before your components are displayed on screen, they must be rendered by React. Understanding the steps in this process will help you think about how your code executes and explain its behavior. You will learn What rendering means in React When and...how react handles rendering