Server Components vs Client Components

What are Server Components in React? React Server Components (RSC) are components that execute only on the server. Instead of sending their JavaScript code to the browser, the server renders them into a special React […]

Share Button

React Fiber Architecture

React Fiber is the core rendering engine introduced in React 16. It replaced the older “Stack Reconciler” to make rendering interruptible, incremental, and more responsive. So first we have to what is “Stack Reconciler” What […]

Share Button