function initializeCounterComponent() { | |
let counterClick = document.querySelector("#counterClick"); | |
if (counterClick) { | |
counterClick.addEventListener("click", (e) => { | |
console.log("click JavaScript"); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment