Transition

「レンダリングを遅延させる」そして「世界を分岐させる

Reactのトランジションで世界を分岐させるハンズオン:

https://zenn.dev/uhyo/books/react-concurrent-handson-2/viewer

緊急性の考慮

UI コンテンツの遅延ローディングの2 つのユースケース

startTransition

import { startTransition } from "react";
startTransition(() => {  
  setSomeState(/* ... */);
});