Merged in feat/SW-1452-city-page-filter-2 (pull request #1392)

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
This commit is contained in:
Erik Tiekstra
2025-02-25 13:02:38 +00:00
parent 8a564274c5
commit 3867baadd6
53 changed files with 1561 additions and 255 deletions

5
contexts/HotelData.ts Normal file
View File

@@ -0,0 +1,5 @@
import { createContext } from "react"
import type { HotelDataStore } from "@/types/contexts/hotel-data"
export const HotelDataContext = createContext<HotelDataStore | null>(null)