React Server Components (RSCs) introduce a server-first execution model where components that don't need interactivity are rendered exclusively on the server, while interactive parts remain Client Components.
Since RSCs are never included in the bundle, React app...