In one example in the redux docs, higher order reducers are implemented with the help of a name property on the action to specialize the action to a given specific reducer.
http://redux.js.org/docs/recipes/reducers/ReusingReducerLogic.html
How is this supposed to work for FSA, since the actions are not allowed to have a name property ?
In one example in the redux docs, higher order reducers are implemented with the help of a
nameproperty on the action to specialize the action to a given specific reducer.http://redux.js.org/docs/recipes/reducers/ReusingReducerLogic.html
How is this supposed to work for FSA, since the actions are not allowed to have a name property ?