mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
18 lines
485 B
TypeScript
18 lines
485 B
TypeScript
import { DashboardHeader } from "@/components/dashboard/header"
|
|
import { DashboardShell } from "@/components/dashboard/shell"
|
|
import { Card } from "@/ui/card"
|
|
|
|
export default function DashboardSettingsLoading() {
|
|
return (
|
|
<DashboardShell>
|
|
<DashboardHeader
|
|
heading="Settings"
|
|
text="Manage account and website settings."
|
|
/>
|
|
<div className="grid gap-10">
|
|
<Card.Skeleton />
|
|
<Card.Skeleton />
|
|
</div>
|
|
</DashboardShell>
|
|
)
|
|
}
|