fix: wrong prop name

This commit is contained in:
Tobias Johansson
2024-09-05 11:38:13 +02:00
committed by Erik Tiekstra
parent 428fb3df3f
commit 4cc325f54c
4 changed files with 97 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
type Coordinates = {
latitude: number
longitude: number
}
export type StaticMapProps = {
coordinates: Coordinates
hotelName: string
zoomLevel?: number
}