10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
export default function DashboardLoading() {
|
|
return (
|
|
<>
|
|
<Skeleton className="h-full w-full rounded-lg" />
|
|
</>
|
|
);
|
|
}
|