11 lines
370 B
TypeScript
11 lines
370 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="h-screen bg-black flex items-center justify-center">
|
|
<div className="text-center">
|
|
<div className="w-12 h-12 border-4 border-primary border-t-transparent rounded-full animate-spin mx-auto mb-4" />
|
|
<p className="text-white/60 text-sm">连接中...</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|