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

When should state be lifted?

Short interview answer

Move it to the closest common owner when multiple siblings must coordinate one source of truth. Do not lift transient state merely for theoretical reuse.

Key takeaway

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

← Back to React hooks

Related questions