mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-10 08:05:22 +02:00
5 lines
225 B
TypeScript
5 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 <></>;
|
|
}
|