import { DashboardHeader } from "@/components/dashboard-header" import { DashboardShell } from "@/components/dashboard-shell" import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Skeleton } from "@/components/ui/skeleton" export default function DancesLoading() { return (
{Array.from({ length: 5 }).map((_, i) => ( ))}
) }