|
|
|
|
|
by ricardobeat
260 days ago
|
|
The event handling alone is almost a hundred calls deep. Because a lot of the work is happening asynchronously, you won't see most of it when stepping through the debugger starting from a click handler for example, but try adding a breakpoint to the compiled JSX. With fibers (React >16) and a couple commonly used hooks you'll easily hit a thousand high call stack. |
|
So, what forms 1000 levels of nested calls? Is that anything specific to React? I'm very curious now!