Files
wr.do/app/(protected)/admin/system/loading.tsx
T
2025-06-11 17:06:20 +08:00

16 lines
501 B
TypeScript

import { Skeleton } from "@/components/ui/skeleton";
import { DashboardHeader } from "@/components/dashboard/header";
import { SkeletonSection } from "@/components/shared/section-skeleton";
export default function DashboardRecordsLoading() {
return (
<>
<DashboardHeader heading="System Settings" text="" />
<SkeletonSection />
<SkeletonSection />
<Skeleton className="h-32 w-full rounded-lg" />
<Skeleton className="h-[400px] w-full rounded-lg" />
</>
);
}