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