add default reducer

This commit is contained in:
Stephen Grider 2015-11-29 14:08:13 -08:00
parent e4c4496928
commit fe018bf94d
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
import { combineReducers } from 'redux';
const rootReducer = combineReducers({});
const rootReducer = combineReducers({
state: (state = {}) => state
});
export default rootReducer;