
[Next.js] Rendering
ยท
๐จโ๐ป Programming/Next.js
What is Rendering?Rendering is the process of transforming the component code you write into UI that users can see and interact withIn Next.js, the tricky part to building a performant application is figuring out when and where this transformation should happen.CSR, SSR and RSCs?Rendering in React โ Rendering in Next.jsHow rendering works in React - CSRClient Side RenderingThis whole approach - ..