qin-team-recipe / 09-frontend

1 stars 0 forks source link

Loadingコンポーネントの作成 #38

Open yasuk-0714 opened 12 months ago

yasuk-0714 commented 12 months ago

やる事

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

n-tsukiya commented 12 months ago

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

yasuk-0714 commented 12 months ago

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

app/dashboard/loading.tsx

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