React Server Components
Rendering on the server.
React Server Components (RSC)
React Server Components allow you to render components on the server, reducing the amount of JavaScript sent to the client.
This improves initial page load performance and allows direct access to backend resources (like databases) from your components.
RSC is primarily used with frameworks like Next.js.