Files
TaxHacker/app/loading.tsx
2025-03-21 18:42:14 +01:00

10 lines
268 B
TypeScript

import { Loader2 } from "lucide-react"
export default function AppLoading() {
return (
<div className="absolute inset-0 flex items-center justify-center h-full w-full">
<Loader2 className="w-10 h-10 animate-spin text-muted-foreground" />
</div>
)
}