20 lines
591 B
TypeScript
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>
|
|
)
|
|
}
|