import { useIntl } from "react-intl" import AccordionItem from "@/components/TempDesignSystem/Accordion/AccordionItem" import Body from "@/components/TempDesignSystem/Text/Body" import type { RestaurantProps } from "@/types/components/hotelReservation/selectHotel/selectHotel" import { IconName } from "@/types/components/icon" export default function Restaurant({ restaurantsContentDescriptionMedium, }: RestaurantProps) { const intl = useIntl() return ( {restaurantsContentDescriptionMedium} ) }