Files
old-ribica/front-ui/app/constants/cartConstants.js
2015-02-05 07:05:06 +01:00

11 lines
265 B
JavaScript

var keyMirror = require('react/lib/keyMirror');
// Define action constants
module.exports = keyMirror({
LOAD: null,
ADD_ITEM: null,
// because removeItem can be used to completely remove item
// and not just decrease count by 1
TAKE_ITEM_OUT: null
});