Card · Client Boundaries
Import contagion, islands of interactivity, and use() on the client.
Rules
"use client"propagates down the import tree — place it as deep as possible, never in layouts.- Client components are interactive islands in a sea of server content.
use(promise)(React 19) unwraps server-passed promises; replaces "fetch on mount" for initial data.- Entity truth stays on the server; client state is UI-only (filters, selection, layout).
Study Card · Chapter 02a-boundary-patterns