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

20 lines
591 B
TypeScript

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