20 lines
524 B
TypeScript
20 lines
524 B
TypeScript
import { DashboardHeader } from "@/components/dashboard/header";
|
|
import { SkeletonSection } from "@/components/shared/section-skeleton";
|
|
|
|
export default function DashboardSettingsLoading() {
|
|
return (
|
|
<>
|
|
<DashboardHeader
|
|
heading="Account Settings"
|
|
text="Manage account and website settings"
|
|
/>
|
|
<div className="divide-y divide-muted pb-10">
|
|
<SkeletonSection />
|
|
<SkeletonSection />
|
|
<SkeletonSection />
|
|
<SkeletonSection card />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|