ruscomap/public/js/getHtmlElements.js

15 lines
498 B
JavaScript
Raw Permalink Normal View History

2024-09-21 00:36:00 +02:00
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,
];
}