Server‑Side Rendering (SSR) vs React Server Components (RSC) in Next.js: The "use client" Directive
TL;DR
SSR is on by default and always runs, regardless of the "use client" directive.
The "use client" directive (an RSC feature) only controls whether the JS bundle (and hydration) for that...