feat(SW-1452): Added filtering and sorting to destination city pages * feat(SW-1452): Added filtering and sorting to destination city pages * feat(SW-1452): Added temporary component for country pages to avoid Context issues Approved-by: Matilda Landström
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
import type { HotelDataWithUrl } from "@/types/hotel"
|
|
import type { SortItem } from "../components/hotelFilterAndSort"
|
|
|
|
export interface HotelDataProviderProps extends React.PropsWithChildren {
|
|
allHotels: HotelDataWithUrl[]
|
|
filterFromUrl?: string
|
|
sortItems: SortItem[]
|
|
}
|