mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
21 lines
745 B
TypeScript
21 lines
745 B
TypeScript
import { DashboardHeader } from "@/components/dashboard/header"
|
|
import { DashboardShell } from "@/components/dashboard/shell"
|
|
import { PostCreateButton } from "@/components/dashboard/post-create-button"
|
|
import { PostItem } from "@/components/dashboard/post-item"
|
|
|
|
export default function DashboardLoading() {
|
|
return (
|
|
<DashboardShell>
|
|
<DashboardHeader heading="Posts" text="Create and manage posts.">
|
|
<PostCreateButton />
|
|
</DashboardHeader>
|
|
<div className="divide-y divide-neutral-200 rounded-md border border-slate-200">
|
|
<PostItem.Skeleton />
|
|
<PostItem.Skeleton />
|
|
<PostItem.Skeleton />
|
|
<PostItem.Skeleton />
|
|
<PostItem.Skeleton />
|
|
</div>
|
|
</DashboardShell>
|
|
)
|
|
}
|