feat(SW-914): add checkin information

This commit is contained in:
Fredrik Thorsson
2024-11-26 17:31:47 +01:00
parent 65aa5f37ae
commit 29e56d35eb
17 changed files with 60 additions and 30 deletions

View File

@@ -1,6 +1,7 @@
import type { Hotel } from "@/types/hotel"
export type AmenitiesSidePeekProps = {
amenitiesList?: Hotel["detailedFacilities"]
parking?: Hotel["parking"]
amenitiesList: Hotel["detailedFacilities"]
parking: Hotel["parking"]
checkInInformation: Hotel["hotelFacts"]["checkin"]
}

View File

@@ -0,0 +1,5 @@
import type { Hotel } from "@/types/hotel"
export type CheckInAmenityProps = {
checkInInformation: Hotel["hotelFacts"]["checkin"]
}

View File

@@ -1,5 +1,5 @@
import type { Hotel } from "@/types/hotel"
export type ParkingProps = {
export type ParkingAmenityProps = {
parking: Hotel["parking"]
}