We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4cc71 commit b30e6aeCopy full SHA for b30e6ae
src/applyMiddleware.js
@@ -17,8 +17,8 @@ import compose from './compose'
17
* @returns {Function} A store enhancer applying the middleware.
18
*/
19
export default function applyMiddleware(...middlewares) {
20
- return (createStore) => (reducer, preloadedState, enhancer) => {
21
- const store = createStore(reducer, preloadedState, enhancer)
+ return (createStore) => (...args) => {
+ const store = createStore(...args)
22
let dispatch = store.dispatch
23
let chain = []
24
0 commit comments