Files
blog-frontend/src/app/posts/[slug]/loading.tsx
wypark 8a2e05b003
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m5s
.
2026-05-28 22:27:29 +09:00

10 lines
250 B
TypeScript

import { Loader2 } from 'lucide-react';
export default function Loading() {
return (
<div className="flex h-screen items-center justify-center">
<Loader2 className="animate-spin text-[var(--color-accent)]" size={40} />
</div>
);
}