redux-immutable-examples icon indicating copy to clipboard operation
redux-immutable-examples copied to clipboard

A complete application showing use of redux-immutable.

Results 4 redux-immutable-examples issues
Sort by recently updated
recently updated
newest added

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 ,...

Please, use `path.join`.

enhancement

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.

question

Here's the current actions boilerplate: ``` js taskAdd = (name) => ({ name: 'TASK_ADD', data: { name } }); taskDone = (id) => ({ name: 'TASK_DONE', data: { id }...

question