rigami.
Glossary
/// Definition

React Server Components

Server Components render on the server and stream to the client, reducing bundle size and enabling data access at render time.

In depth

React Server Components (RSC) are React components that execute exclusively on the server. They can access databases, secrets and file systems directly. Next.js 14 App Router is the leading production RSC framework.

Related terms