Skip to content
React·Advanced·Conceptual·1 min read

Does startTransition delay the state update by a fixed time?

Short interview answer

No. It marks update priority as non-urgent, letting React interrupt and schedule rendering while urgent work such as controlled input remains responsive.

Key takeaway

Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.

← Back to Suspense

Related questions