fix(SW-1273): move find my booking page to the correct folder after monorepo migration

This commit is contained in:
Christian Andolf
2025-02-26 13:18:42 +01:00
parent 7d3c0c96e3
commit 8f17622f21
5 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
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>
)
}