16 lines
430 B
TypeScript
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" />
|
|
</>
|
|
);
|
|
}
|