In blocking rendering, all updates have the same priority.
In Concurrent Mode, work is "interruptible". And user-blocking updates are treated with highest importance.
To keep interfaces interactive and snappy, we can de-prioritize slower updates.
The useTransition Hook — and its startTransition function — allows React to schedule work after higher priority work.
const [isPending, startTransition] = useTransition() is actual for May 2023. Everything else is working great.