* 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
7 lines
212 B
TypeScript
7 lines
212 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { HotelListingDataStore } from "@/types/contexts/hotel-listing-data"
|
|
|
|
export const HotelListingDataContext =
|
|
createContext<HotelListingDataStore | null>(null)
|