Kirill Vasiltsov
Kirill Vasiltsov
I spent some time in `src/redux/actions/public.js` before, so I think I can help with it.
Yeah #82 gives a (maybe unobvious) option to treat tabs as multiple spaces internally which I added exactly for the reason above. @surma Try setting it up like this and...
I'm planning to create one soon
@octref I haven't touched `remark` for a long time. If there is a way to get lines I want to highlight from `remark`, then yes, I would use that information...
Better version: https://codesandbox.io/s/simple-spring-animation-improved-k83y6
Could you make a codesandbox or something with the minimal reproduction?
It is probably not `react-dnd`: I see some scrolling issues in a similar setting with no libraries used. What's weird is that it's not `react-easy-flip` either! Maybe this is a...
Are there any use cases where it's too hard to just use `togglePresence` ? >Really nice library otherwise! Thanks!
I see! It can be pretty easily done with `togglePresence` but yeah maybe `hide/show` is a more intuitive API? ```js const SomeComponentWithProps = (props) => { const isFirstRender = React.useRef(true);...
There's a subtle difference in JS between returning Promises or awaiting them before returning. Suppose `createPromise` creates some Promise: ```js async function returnSomething() { return createPromise(); } ``` ```js async...