Frontend Excellence React Server Components Server Components run on the server and send rendered HTML to the client. They can directly access databases, filesystems, and internal APIs without exposing them to the browser. Rules: - Server Components cannot use , , or browser APIs - Mark interactive components with at the top of the file - Pass serializable props from Server to Client Components (no functions, no classes) - Keep boundary as deep in the tree as possible Streaming SSR Each boundary streams independently. Place boundaries around data-fetching components to avoid blocking the enti…