mirror of
https://github.com/oiov/wr.do.git
synced 2026-06-02 01:11:46 +08:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { DashboardHeader } from "@/components/dashboard/header";
|
|
|
|
export default function DashboardLoading() {
|
|
return (
|
|
<>
|
|
<Skeleton className="h-full w-full rounded-lg" />
|
|
</>
|
|
);
|
|
}
|