This commit is contained in:
xCyanGrizzly
2026-02-18 14:26:36 +01:00
commit 3a5726e82b
167 changed files with 104081 additions and 0 deletions

18
src/app/(app)/vendors/loading.tsx vendored Normal file
View File

@@ -0,0 +1,18 @@
import { Skeleton } from "@/components/ui/skeleton";
export default function VendorsLoading() {
return (
<div className="space-y-4">
<div className="flex items-center justify-between">
<Skeleton className="h-8 w-40" />
<Skeleton className="h-9 w-28" />
</div>
<Skeleton className="h-10 w-full" />
<div className="space-y-2">
{Array.from({ length: 5 }).map((_, i) => (
<Skeleton key={i} className="h-10 w-full" />
))}
</div>
</div>
);
}