Loadingコンポーネントの作成
Opened this issue · 2 comments
yasuk-0714 commented
やる事
API取得時のLoadingコンポーネントを共通化したいので、Loadingコンポーネントを作成する
n-tsukiya commented
ローディングはコンポーネントっていうよりもApp Routerのloadng.tsx使う感じでしょうか?🤔
https://nextjs.org/docs/app/building-your-application/routing/loading-ui-and-streaming
yasuk-0714 commented
そうですね!その認識であっています🙆
完全に作成時点では、pages routerの感じでissue作ってました😂
app/dashboard/loading.tsx
export default function Loading() {
// You can add any UI inside Loading, including a Skeleton.
return <LoadingSkeleton />
}