dograh/ui/src/app/loading.tsx

6 lines
225 B
TypeScript
Raw Normal View History

2025-09-09 14:37:32 +05:30
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 <></>;
}