import stringify from "json-stable-stringify-without-jsonify" import { Suspense } from "react" import SelectHotel from "@/components/HotelReservation/SelectHotel" import { SelectHotelSkeleton } from "@/components/HotelReservation/SelectHotel/SelectHotelSkeleton" import { setLang } from "@/i18n/serverContext" import type { SelectHotelSearchParams } from "@/types/components/hotelReservation/selectHotel/selectHotelSearchParams" import type { LangParams, PageArgs } from "@/types/params" export default async function SelectHotelPage({ params, searchParams, }: PageArgs) { setLang(params.lang) const suspenseKey = stringify(searchParams) return ( }> ) }