13 lines
459 B
TypeScript
13 lines
459 B
TypeScript
import { SelectRatePage as SelectRatePagePrimitive } from "@scandic-hotels/booking-flow/pages/SelectRatePage"
|
|
|
|
import { getLang } from "@/i18n/serverContext"
|
|
|
|
import { type LangParams, type PageArgs } from "@/types/params"
|
|
|
|
export default async function SelectRatePage(props: PageArgs<LangParams>) {
|
|
const searchParams = await props.searchParams
|
|
const lang = await getLang()
|
|
|
|
return <SelectRatePagePrimitive lang={lang} searchParams={searchParams} />
|
|
}
|