Merge branch 'master' of github.com:StephenGrider/ReduxSimpleStarter

This commit is contained in:
stephen grider 2015-12-05 13:49:10 -08:00
commit 1b822281fb
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;