client/src/reducers/index.js
author ymh <ymh.work@gmail.com>
Mon, 22 May 2017 14:34:35 +0200
changeset 1 431977d7c9a6
child 3 3b5d37d84cfe
permissions -rw-r--r--
add first react application skeleton

import notes from './notes-reducer';
import {combineReducers} from 'redux-immutable';

const rootReducer = combineReducers({
  notes
});

export default rootReducer;