Files
web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/index.tsx
2024-11-11 09:12:44 +01:00

24 lines
653 B
TypeScript

"use client"
import HotelCardListing from "@/components/HotelReservation/HotelCardListing"
import styles from "./hotelListing.module.css"
import { HotelCardListingTypeEnum } from "@/types/components/hotelReservation/selectHotel/hotelCardListingProps"
import type { HotelListingProps } from "@/types/components/hotelReservation/selectHotel/map"
export default function HotelListing({
hotels,
cardState = "default",
}: HotelListingProps) {
return (
<div className={styles.hotelListing}>
<HotelCardListing
hotelData={hotels}
type={HotelCardListingTypeEnum.MapListing}
state={cardState}
/>
</div>
)
}