Files
fintrack/app/transactions/loading.tsx

12 lines
314 B
TypeScript

import { RefreshCw } from "lucide-react";
export default function Loading() {
return (
<div className="flex h-screen bg-background">
<main className="flex-1 flex items-center justify-center">
<RefreshCw className="w-8 h-8 animate-spin text-muted-foreground" />
</main>
</div>
);
}