Feat/SW-2271 hotel list filtering

* feat(SW-2271): Changes to hotel data types in preperation for filtering
* feat(SW-2271): Added filter and sort functionality

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-07-04 09:27:20 +00:00
parent 82e21af0d4
commit fa7214cb58
58 changed files with 1572 additions and 450 deletions

View File

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