ruscomap/public/js/getHtmlElements.js
2024-06-30 22:56:19 +02:00

8 lines
No EOL
477 B
JavaScript

export function basicElements(){
const addMarkerBtn = document.getElementById("addMarkerBtn")
const markerFormContainer = document.getElementById("markerFormContainer")
const markerForm = document.getElementById("markerForm")
const noticeCoordsPicker = document.getElementById("noticeCoordsPicker")
const remainingForm = document.getElementById("remainingForm")
return [addMarkerBtn, markerFormContainer, markerForm, noticeCoordsPicker, remainingForm]
}