Skip to content

Commit 087146d

Browse files
committed
Merge pull request reduxjs#543 from spilliton/remove-import
Removing a few unused combineReducers imports in examples
2 parents f087b61 + 06f5daf commit 087146d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

examples/counter/store/configureStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createStore, applyMiddleware, combineReducers } from 'redux';
1+
import { createStore, applyMiddleware } from 'redux';
22
import thunk from 'redux-thunk';
33
import rootReducer from '../reducers';
44

examples/todomvc/reducers/todos.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { ADD_TODO, DELETE_TODO, EDIT_TODO, COMPLETE_TODO, COMPLETE_ALL, CLEAR_COMPLETED } from '../constants/ActionTypes';
2-
import { combineReducers } from 'redux';
32

43
const initialState = [{
54
text: 'Use Redux',

0 commit comments

Comments
 (0)