Files
web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx
Christian Andolf 51f71383d4 fix(SW-1273): usage of Link component
move getLang further down the render to reduce CPU cycles

swap to min-width on button to compensate larger strings

remove useless async declaration
2025-02-27 09:57:18 +01:00

14 lines
295 B
TypeScript

import FindMyBooking from "@/components/HotelReservation/FindMyBooking"
import styles from "./page.module.css"
export default function GetBookingPage() {
return (
<main className={styles.main}>
<div className={styles.form}>
<FindMyBooking />
</div>
</main>
)
}