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 46083e7 commit 07ce117Copy full SHA for 07ce117
src/utils/bindActionCreators.js
@@ -1,4 +1,4 @@
1
-import mapValues from '../utils/mapValues'
+import mapValues from './mapValues'
2
3
function bindActionCreator(actionCreator, dispatch) {
4
return (...args) => dispatch(actionCreator(...args))
src/utils/combineReducers.js
@@ -1,7 +1,7 @@
import { ActionTypes } from '../createStore'
-import isPlainObject from '../utils/isPlainObject'
-import pick from '../utils/pick'
+import isPlainObject from './isPlainObject'
+import pick from './pick'
5
6
/* eslint-disable no-console */
7
0 commit comments