mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 17:36:25 +02:00
8 lines
297 B
TypeScript
8 lines
297 B
TypeScript
'use client';
|
|
import { Spinner } from "@heroui/react";
|
|
|
|
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 <Spinner size="sm" />;
|
|
}
|