Files
web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/index.tsx
2024-09-27 14:23:49 +02:00

12 lines
388 B
TypeScript

"use client"
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>Hotel listing TBI</section>
}