React·Beginner·Conceptual·1 min read
Do effects run during server rendering?
Short interview answer
No. Effects are client-side synchronization after commit. Server output must not depend on an effect having run.
Key takeaway
Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.