-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
176 changed files
with
29,442 additions
and
5,492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
components/Card/components/ConstructionInfo/ConstructionInfo.tsx
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React, { ReactNode } from 'react'; | ||
import { Close } from 'components/Close'; | ||
import styles from './DesktopCard.module.css'; | ||
|
||
interface Props { | ||
popupHash?: string; | ||
children: ReactNode; | ||
closePopup: () => void; | ||
} | ||
|
||
export function DesktopCard({ popupHash, children, closePopup }: Props) { | ||
if (!popupHash) { | ||
return <></>; | ||
} | ||
|
||
return ( | ||
<div className={styles.DesktopCard}> | ||
<div className={styles.DesktopCard__header}> | ||
<Close close={closePopup} /> | ||
</div> | ||
{children} | ||
</div> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
export const MIN_ZOOM = 11; | ||
export const MAX_ZOOM = 20; | ||
export const BUILDING_LAYER_ID = 'building'; | ||
export const CENTER_COORDS: [number, number] = [60.605, 56.838011]; |
Oops, something went wrong.
6902c2c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy preview for map ready!
✅ Preview
https://map-pp8y8pbpy-ekbdev.vercel.app
https://ekbdev-map-refactor3.vercel.app
Built with commit 6902c2c.
This pull request is being automatically deployed with vercel-action