"use client"; import { TeamHealth } from "@/types"; import { TeamHealthCard } from "./team-health-card"; import { Skeleton } from "@/components/ui/skeleton"; interface TeamHealthCardsProps { teams: TeamHealth[] | undefined; isLoading: boolean; } export function TeamHealthCards({ teams, isLoading }: TeamHealthCardsProps) { if (isLoading) { return (