import SkeletonShimmer from "@/components/SkeletonShimmer" import { HotelCardSkeleton } from "../HotelCard/HotelCardSkeleton" import styles from "./selectHotel.module.css" type Props = { count?: number } export function SelectHotelSkeleton({ count = 4 }: Props) { return (
{Array.from({ length: count }).map((_, index) => ( ))}
) }