We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2be22 commit 2d21a37Copy full SHA for 2d21a37
README.md
@@ -42,14 +42,13 @@ function login(username, password) {
42
}
43
44
// Side-effect: fetch orders asynchronously
45
- // This action could be dispatched from a middleware as well. See below.
+ // This action could be dispatched from a middleware as well instead. See below.
46
dispatch(fetchOrders());
47
48
49
50
const middlewares = [
51
thunkMiddleware,
52
- // Middleware for real redux store. Mock store does not support middlewares.
53
({ dispatch, getState }) => (next) => (action) => {
54
const result = next(action);
55
0 commit comments