React Server Components (RSC) render only on the server — their JavaScript is never sent to the browser. In the App Router, every component is a Server Component by default; you opt into client behavior explicitly.
What a Server Component can do
db ;
() {
users = db..();
(
);
}
