MCPcopy
hub / github.com/react-guide/redux-tutorial-cn / addItemActionCreator

Function addItemActionCreator

10_state-subscriber.js:50–55  ·  view source on GitHub ↗
(item)

Source from the content-addressed store, hash-verified

48})
49
50var addItemActionCreator = function (item) {
51 return {
52 type: 'ADD_ITEM',
53 item: item
54 }
55}
56
57store_0.dispatch(addItemActionCreator({ id: 1234, description: 'anything' }))
58

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected