feat(SW-713): Added sidepeek functionality for rooms

This commit is contained in:
Erik Tiekstra
2024-11-25 13:37:14 +01:00
parent 9612cf117c
commit 27f48bcc7e
9 changed files with 205 additions and 35 deletions

View File

@@ -1,11 +1,9 @@
import type { RoomData } from "@/types/hotel"
export interface RoomCardProps {
hotelId: string
room: RoomData
}
export type RoomsProps = {
hotelId: string
rooms: RoomData[]
}

View File

@@ -0,0 +1,5 @@
import type { RoomData } from "@/types/hotel"
export interface RoomSidePeekProps {
room: RoomData
}