stack/examples/cjs-test/app/loading.tsx
2024-06-16 14:58:10 +02:00

6 lines
225 B
TypeScript

export default function Loading() {
// Stack uses React Suspense, which will render this page while user data is being fetched.
// See: https://nextjs.org/docs/app/api-reference/file-conventions/loading
return <></>;
}