redux-immutable-examples
redux-immutable-examples copied to clipboard
A complete application showing use of redux-immutable.
hi, i am new to redux, and I am trying to run your examples, when I just run 'npm start', I got the errors below, my node.js is 6.10.0 ,...
The example uses redux-immutable 1.3.2. With the latest redux-immutable 3.0.8, it crashes with **Uncaught TypeError: reducer is not a function(…)** at combineReducers.js line 37.
Here's the current actions boilerplate: ``` js taskAdd = (name) => ({ name: 'TASK_ADD', data: { name } }); taskDone = (id) => ({ name: 'TASK_DONE', data: { id }...