13 lines
366 B
TypeScript
13 lines
366 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { DashboardHeader } from "@/components/dashboard/header";
|
|
|
|
export default function DashboardLoading() {
|
|
return (
|
|
<>
|
|
<DashboardHeader heading="Setup Guide" text="" />
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
<Skeleton className="h-[400px] w-full rounded-lg" />
|
|
</>
|
|
);
|
|
}
|