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 e283bec commit 8d6655eCopy full SHA for 8d6655e
redux-examples/counter/store/configureStore.js
@@ -3,7 +3,7 @@ import thunk from 'redux-thunk'
3
import reducer from '../reducers'
4
5
//applyMiddleware来自redux可以包装 store 的 dispatch
6
-//thunk作用是使被 dispatch 的 function 会接收 dispatch 作为参数,并且可以异步调用它
+//thunk作用是使action创建函数可以返回一个function代替一个action对象
7
const createStoreWithMiddleware = compose(
8
applyMiddleware(
9
thunk
0 commit comments