Prepare hotelreservation routes * Prepare hotelreservation routes Approved-by: Matilda Landström
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
import { getLang } from "@/i18n/serverContext"
|
|
|
|
export default async function HotelReservationPage() {
|
|
const lang = await getLang()
|
|
redirect(`/${lang}/hotelreservation/select-hotel`)
|
|
}
|