qin-team-recipe/09-frontend

Loadingコンポーネントの作成

Opened this issue · 2 comments

やる事

API取得時のLoadingコンポーネントを共通化したいので、Loadingコンポーネントを作成する

ローディングはコンポーネントっていうよりもApp Routerのloadng.tsx使う感じでしょうか?🤔
https://nextjs.org/docs/app/building-your-application/routing/loading-ui-and-streaming

そうですね!その認識であっています🙆
完全に作成時点では、pages routerの感じでissue作ってました😂

app/dashboard/loading.tsx

export default function Loading() {
  // You can add any UI inside Loading, including a Skeleton.
  return <LoadingSkeleton />
}