|
|
|
|
|
by lmm
568 days ago
|
|
> The first run through, useState() returns the default value and your code runs to completion. Your function was still sliced into the part before and the continuation (Dispatch) after though, right? The React runtime calls that continuation immediately with the default value, so you don't notice the suspension, but control flow wise it's still React calling your code twice rather than once. |
|