Skip to content

Commit

Permalink
fix lint error: abs.import & import in module body
Browse files Browse the repository at this point in the history
  • Loading branch information
kubijo committed Sep 27, 2016
1 parent 61238d8 commit 03c35a0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/store/configureStore.development.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { createStore, applyMiddleware, compose } from 'redux';
import thunk from 'redux-thunk';
import { hashHistory } from 'react-router';
import { routerMiddleware, push } from 'react-router-redux';
import createLogger from 'redux-logger';
import rootReducer from '../reducers';

import * as counterActions from '../actions/counter';
Expand All @@ -11,9 +12,6 @@ const actionCreators = {
push,
};

// Dev modules
import createLogger from 'redux-logger';

const logger = createLogger({
level: 'info',
collapsed: true
Expand Down

0 comments on commit 03c35a0

Please sign in to comment.