React Server Components render entirely on the server, sending static HTML instead of JavaScript bundles, cutting client payload by 80-90% for data-heavy UIs. Mark with 'use server' directive—data fetching happens server-side, no client hydration needed for static content. Client Components ('use client') handle interactivity only.
Example:-


.png)
