feat(SW-325): added mapId as environment variables
This commit is contained in:
@@ -6,4 +6,5 @@ export interface DynamicMapProps {
|
||||
hotelName: string
|
||||
coordinates: Coordinates
|
||||
pointsOfInterest: PointOfInterest[]
|
||||
mapId: string
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PointOfInterest } from "@/types/hotel"
|
||||
import type { PointOfInterest } from "@/types/hotel"
|
||||
|
||||
export interface MapCardProps {
|
||||
hotelName: string
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import { PointOfInterest } from "@/types/hotel"
|
||||
import type { Coordinates } from "../../maps/coordinates"
|
||||
import type { Coordinates } from "@/types/components/maps/coordinates"
|
||||
import type { PointOfInterest } from "@/types/hotel"
|
||||
|
||||
export interface MapContentProps {
|
||||
coordinates: Coordinates
|
||||
pointsOfInterest: PointOfInterest[]
|
||||
activePoi: PointOfInterest["name"] | null
|
||||
mapId: string
|
||||
onActivePoiChange: (poi: PointOfInterest["name"] | null) => void
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PointOfInterest } from "@/types/hotel"
|
||||
import type { PointOfInterest } from "@/types/hotel"
|
||||
|
||||
export interface SidebarProps {
|
||||
hotelName: string
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RoomData } from "@/types/hotel"
|
||||
import type { RoomData } from "@/types/hotel"
|
||||
|
||||
export interface RoomCardProps {
|
||||
id: string
|
||||
|
||||
Reference in New Issue
Block a user