10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
import { ThinkingIndicator } from "@/components/ThinkingIndicator";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center bg-bg px-6 py-16">
|
|
<ThinkingIndicator label="加载中…" className="text-ink-soft" />
|
|
</main>
|
|
);
|
|
}
|