"use client" import { useIntl } from "react-intl" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./parkingList.module.css" import type { ParkingListProps } from "@/types/components/hotelPage/sidepeek/parking" export default function ParkingList({ numberOfChargingSpaces, canMakeReservation, numberOfParkingSpots, distanceToHotel, address, }: ParkingListProps) { const intl = useIntl() const canMakeReservationYesMsg = intl.formatMessage({ defaultMessage: "Parking can be reserved in advance: Yes", }) const canMakeReservationNoMsg = intl.formatMessage({ defaultMessage: "Parking can be reserved in advance: No", }) return ( ) }