Files
2025-06-20 20:13:52 +08:00

14 lines
429 B
TypeScript

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