what’s the best way to add non-passive event handlers? preventDefault can’t be used inside on-touch-start handlers anymore without using addEventListener(..., {passive: false}).
I wrote a hook for it here: https://gist.github.com/shaunlebron/e3c64e5ab956bc2bff971157b37f27d8
not sure if I should add the handlers with useEffect or with-let etc
checking here for react solutions: https://github.com/facebook/react/issues/22794