код в createStore.js
function dispatch(action) {
...
try {
isDispatching = true
currentState = currentReducer(currentState, action)
} finally {
isDispatching = false
}
const listeners = (currentListeners = nextListeners)
for (let i = 0; i < listeners.length; i++) {
const listener = listeners[i]
listener()
}
...
Эти строки кода не гарантируют, что состояние было обновлено при вызове linstener.Это вызовет некоторые проблемы?