updated readme for 2.8-2.9

This commit is contained in:
Ken
2019-02-26 23:05:21 -08:00
parent ea42eff47e
commit 8baa405a0d
2 changed files with 40 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ const store = createStore(redcuers);
store.dispatch(actions.addTodo('id0', 'hello world'));
```
> Note: It is important to note that dispatches in general have a "fire and forget" approach. We expect React to re-render the UI correct on its own accord. Rendering isn't necessarily synchronous in React!
> Note: It is important to note that dispatches in general have a "fire and forget" approach. We expect React to re-render the UI correct on its own accord. Rendering isn't necessarily synchronous in React! Chaining async action creators is a topic for Step 9
# Reducers scoped to a portion of the state tree