David Welling
David Welling
Often pieces of state will be needed for decisions in the effect methods. Would you recommend keeping these instead in an external useState, or is there some way to pass...
utils.useMouseAndTouchTracker has some code like this: ```javascript environment.addEventListener('mousedown', onMouseDown) environment.addEventListener('mouseup', onMouseUp) environment.addEventListener('touchstart', onTouchStart) environment.addEventListener('touchmove', onTouchMove) environment.addEventListener('touchend', onTouchEnd) ``` When the component is run in production mode with react-native this will...
## Environment Running in windows with Node v16.15.1 ## Description A few months ago source maps stopped working using repack and I've been banging my head against a wall trying...
## Environment Running in windows with Node v16.15.1 ## Description I tried to get v3 running locally so I could test this out, but I'm having some difficulty. I tried...
If I set my package.json to have "type": "module" for symlinked dependency it causes the runtime code to fail when trying to load interopRequireDefault and react-refresh because require is not...
This is probably something I'm doing wrong, but I'm not sure where to start. I hope you don't mind if I run it by you in case you have suggestions...
I was trying to use Stetho to see the sqlite database and I could not. After looking through the file system, I noticed that you are storing the database files...