import Header from "@/components/Section/Header" import { getIntl } from "@/i18n" import RoomCard from "./RoomCard" import styles from "./roomSelection.module.css" import { RoomSelectionProps } from "@/types/components/hotelReservation/selectRate/roomSelection" export default async function RoomSelection({ rooms }: RoomSelectionProps) { const { formatMessage } = await getIntl() return (
) }