Skip to content

Commit

Permalink
Merge pull request reduxjs#543 from spilliton/remove-import
Browse files Browse the repository at this point in the history
Removing a few unused combineReducers imports in examples
  • Loading branch information
gaearon committed Aug 17, 2015
2 parents f087b61 + 06f5daf commit 087146d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion examples/counter/store/configureStore.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createStore, applyMiddleware, combineReducers } from 'redux';
import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import rootReducer from '../reducers';

Expand Down
1 change: 0 additions & 1 deletion examples/todomvc/reducers/todos.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ADD_TODO, DELETE_TODO, EDIT_TODO, COMPLETE_TODO, COMPLETE_ALL, CLEAR_COMPLETED } from '../constants/ActionTypes';
import { combineReducers } from 'redux';

const initialState = [{
text: 'Use Redux',
Expand Down

0 comments on commit 087146d

Please sign in to comment.