Merged develop into feat/SW-92-room-card

This commit is contained in:
Chuma Mcphoy (We Ahead)
2024-07-11 08:06:59 +00:00
18 changed files with 266 additions and 56 deletions

View File

@@ -0,0 +1,5 @@
import { Rate } from "@/server/routers/hotels/output"
export type RoomSelectionProps = {
rooms: Rate[]
}

View File

@@ -0,0 +1,7 @@
export type SelectionCardProps = {
title: string
subtext: string
price: number
membersPrice?: number
currency: string
}