14 lines
468 B
TypeScript
14 lines
468 B
TypeScript
"use client"
|
|
|
|
import styles from "./hotelListing.module.css"
|
|
|
|
import { HotelListingProps } from "@/types/components/hotelReservation/selectHotel/map"
|
|
|
|
// TODO: This component is copied from
|
|
// components/ContentType/HotelPage/Map/DynamicMap/Sidebar.
|
|
// Look at that for inspiration on how to do the interaction with the map.
|
|
|
|
export default function HotelListing({}: HotelListingProps) {
|
|
return <section className={styles.hotelListing}>Hotel listing TBI</section>
|
|
}
|