react-quiz-component icon indicating copy to clipboard operation
react-quiz-component copied to clipboard

Next Button onClick handler

Open 127 opened this issue 1 year ago • 0 comments

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);
  }, []);

127 avatar Mar 12 '24 09:03 127