Hi, it would be nice to have a next question button click handler in addition!
Now it can be done with sth like
useEffect(() => {
const handleClick = (event: any) => {
if (event.target.classList.contains("nextQuestionBtn")) {
console.log(". nextQuestionBtn pressed");
}
};
document.addEventListener("click", handleClick);
return () => document.removeEventListener("click", handleClick);
}, []);
Hi, it would be nice to have a next question button click handler in addition!
Now it can be done with sth like