Files
wzdj/app/chat/loading.tsx
v0 e57831a8bd fix: split star detail page into server and client components
Fix params issue by splitting page and adding Suspense boundary.

Co-authored-by: undefined <undefined+undefined@users.noreply.github.com>
2025-12-01 13:17:17 +00:00

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>
)
}