Skip to content

Commit 4c8d65f

Browse files
committed
feat(saas): Admin dash loading
1 parent eaaffcf commit 4c8d65f

File tree

1 file changed

+14
-0
lines changed
  • starterkits/saas/src/app/(app)/admin/dashboard

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { AppPageLoading } from "@/app/(app)/_components/page-loading";
2+
import { adminDashConfig } from "@/app/(app)/admin/dashboard/_constants/page-config";
3+
import { Skeleton } from "@/components/ui/skeleton";
4+
5+
export default function AdminFeedbackPageLoading() {
6+
return (
7+
<AppPageLoading
8+
title={adminDashConfig.title}
9+
description={adminDashConfig.description}
10+
>
11+
<Skeleton className="h-96 w-full" />
12+
</AppPageLoading>
13+
);
14+
}

0 commit comments

Comments
 (0)