import { AdvancedMarker, AdvancedMarkerAnchorPoint, } from "@vis.gl/react-google-maps" import Body from "@/components/TempDesignSystem/Text/Body" import HotelMarker from "../../Markers/Hotel" import styles from "./hotelListingMapContent.module.css" import { HotelPin } from "@/types/components/hotelReservation/selectHotel/map" export default function HotelListingMapContent({ activeHotelPin, hotelPins, }: { activeHotelPin?: HotelPin["name"] | null hotelPins: HotelPin[] }) { return (
{hotelPins.map((pin) => ( {pin.price} {pin.currency} ))}
) }