client/src/reducers/index.js
changeset 1 431977d7c9a6
child 3 3b5d37d84cfe
--- /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;