Skip to content

Commit

Permalink
Merge pull request reduxjs#1001 from cvbuelow/refactor
Browse files Browse the repository at this point in the history
Simplify import paths
  • Loading branch information
gaearon committed Nov 4, 2015
2 parents 46083e7 + 07ce117 commit 0509c6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/utils/bindActionCreators.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import mapValues from '../utils/mapValues'
import mapValues from './mapValues'

function bindActionCreator(actionCreator, dispatch) {
return (...args) => dispatch(actionCreator(...args))
Expand Down
6 changes: 3 additions & 3 deletions src/utils/combineReducers.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ActionTypes } from '../createStore'
import isPlainObject from '../utils/isPlainObject'
import mapValues from '../utils/mapValues'
import pick from '../utils/pick'
import isPlainObject from './isPlainObject'
import mapValues from './mapValues'
import pick from './pick'

/* eslint-disable no-console */

Expand Down

0 comments on commit 0509c6c

Please sign in to comment.