最終更新:2023-07-21 (金) 05:48:10 (287d)  

React/Suspense
Top / React / Suspense

lets you display a fallback until its children have finished loading.

https://react.dev/reference/react/Suspense

<Suspense fallback={<Loading />}>
  <SomeComponent />
</Suspense>

コンポーネント