import SkeletonShimmer from "@/components/SkeletonShimmer" import { RoomCardSkeleton } from "../../SelectRate/RoomSelection/RoomCard/RoomCardSkeleton" import styles from "./SelectHotelMapContainerSkeleton.module.css" type Props = { count?: number } export function SelectHotelMapContainerSkeleton({ count = 2 }: Props) { return (
{Array.from({ length: count }).map((_, index) => (
))}
) }