8 lines
No EOL
477 B
JavaScript
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]
|
|
} |