feat(SW-914): add amenities sidepeek

This commit is contained in:
Fredrik Thorsson
2024-11-19 13:39:14 +01:00
parent b80d75a63a
commit ee622b07cb
5 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import type { Hotel } from "@/types/hotel"
export type AmenitiesSidepeekProps = {
amenitiesList: Hotel["detailedFacilities"]
}

View File

@@ -0,0 +1,3 @@
export type AmenityProps = {
title: string
}