feat(SW-73): Create breakfast selection

This commit is contained in:
Niclas Edenvin
2024-07-10 16:24:26 +02:00
parent 4b4076675a
commit 5c6d9d03ce
9 changed files with 98 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
import { serverClient } from "@/lib/trpc/server"
import BreakfastSelection from "@/components/HotelReservation/SelectRate/BreakfastSelection"
import FlexibilitySelection from "@/components/HotelReservation/SelectRate/FlexibilitySelection"
import RoomSelection from "@/components/HotelReservation/SelectRate/RoomSelection"
@@ -17,6 +18,7 @@ export default async function SelectRate() {
<div className={styles.hotelInfo}>Hotel info TBI</div>
<RoomSelection rooms={rooms} />
<FlexibilitySelection />
<BreakfastSelection />
</main>
</div>
)