client/src/reducers/notesReducer.js
author ymh <ymh.work@gmail.com>
Tue, 23 May 2017 17:47:59 +0200
changeset 7 218abb8b1cad
parent 3 3b5d37d84cfe
child 12 48ddaa42b810
permissions -rw-r--r--
update yarn lock

import Immutable from 'immutable';

import * as types from '../constants/actionTypes';
import noteRecord from '../store/noteRecord';


export default (state = Immutable.List([]), action) => {
  switch (action.type) {
    case types.ADD_NOTE:
      return state.push(new noteRecord(action.note));
    default:
      return state;
  }
};