|
|
|
|
|
by nine_k
258 days ago
|
|
I don't think a typical React rendering call is even 100 calls deep. React itself adds maybe a dozen frames. Your components could be complicated, but likely they don't add more than another dozen or two. React is pretty efficient if you hold it right, and use for its intended purpose, that is, large and complex interactive UIs. |
|
With fibers (React >16) and a couple commonly used hooks you'll easily hit a thousand high call stack.