Kirill Mesnyankin
Kirill Mesnyankin
I have the same problem A slightly more compact example https://codesandbox.io/s/stupefied-poitras-n21ig
It's first line of defense against wide range of attacks for most users (mostly non-IT users). It can: - prevent opening/installation of malicious software/file/web site e.t.c. - protect against spy...
Here are some of the features that my AV provides (windows): - Camera protection: shows me dialog with option to block access if any program (including OS) try to use...
Would be nice if second argument of `useCallback` was injected as dependencies to callback function. ```javascript function useCallback(cb, deps) => { lastDeps = deps; // save current deps and cb...
@sokra With this you will not be able to access to state and props updates inside a callback. ```javascript const [state, setState] = useState(0); const handleClick = useCallback((event) => {...
If I understand the problem correctly... What if useCallback will return a special callable object with two different states of an our callback function? The first is a `current` callback,...
Concurrent mode can produce two different representations of a component (the first one is that commited to the dom and the second one is that in memory). This representations should...