Daniel Del Core
Daniel Del Core
```js useEffect(() => { const interval = setInterval(() => { setTick(tick + 1); }, 1000); return () => clearInterval(interval); }); return ( // Note setting tick triggers a rerender );...
Could be because of this: https://github.com/codesandbox/sandpack/issues/939#issuecomment-1554663935 > SandpackLayout component, which contains an intersection observer to trigger the bundler to start
Hey @pimterry, Have you been able observe this in our storybook instance https://react-beautiful-dnd.netlify.com/ ? If not, could you please set up a minimal reproduction in codesandbox for us to have...
Yeah things like this can sometimes be caused when react re-renders are triggered by components higher up the tree. You can debug this by enabling paint flashing in the Chrome...
Hey @threepointone, I wanted to share [CodeshiftCommunity](https://www.codeshiftcommunity.com/), which could help side-step some of these issues. It allows you to publish codemods as packages to NPM, the CLI will pull it...
Looks like this is already supported! Currently jscodeshift lets you pass a url to the `--transform` cli arg. Which means you can pass raw files from github or gist. So...
Since i have idea how coffeescript works i've been converting it back to JS [with this](https://awsm-tools.com/code/coffee2js) haha
Hey all, in case anyone finds it useful here's an alternate testing util that supports async transforms. Feel free to either copy-paste or pull the library as a dep. The...
Works for me on ``` "@codesandbox/sandpack-react": "^2.18.2", "next": "14.1.0", ```
Hey folks, I'm working on a project based on jscodeshift that acts as a community registry for codemods. The way it works in a nutshell is: 1. Create a codemod...