Files
wr.do/app/(protected)/admin/storage/loading.tsx
2025-07-20 19:53:38 +08:00

16 lines
430 B
TypeScript

import { Skeleton } from "@/components/ui/skeleton";
import { DashboardHeader } from "@/components/dashboard/header";
export default function DashboardRecordsLoading() {
return (
<>
<DashboardHeader
heading="Cloud Storage"
text="List and manage cloud storage"
/>
<Skeleton className="h-[58px] w-full rounded-lg" />
<Skeleton className="h-[400px] w-full rounded-lg" />
</>
);
}