13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
import { Loader2 } from "lucide-react"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-background">
|
|
<div className="flex flex-col items-center gap-4">
|
|
<Loader2 className="h-10 w-10 animate-spin text-primary" />
|
|
<p className="text-sm text-muted-foreground font-serif">加载中...</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|