diff -r d076a27e5631 -r 431977d7c9a6 client/src/reducers/index.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/reducers/index.js Mon May 22 14:34:35 2017 +0200 @@ -0,0 +1,8 @@ +import notes from './notes-reducer'; +import {combineReducers} from 'redux-immutable'; + +const rootReducer = combineReducers({ + notes +}); + +export default rootReducer;