var keyMirror = require('react/lib/keyMirror');
// Define action constants
module.exports = keyMirror({
CART_ADD: null,
CART_REMOVE: null,
CART_VISIBLE: null,
SET_SELECTED: null,
RECEIVE_DATA: null
});
// Define action constants
module.exports = {
CART_ADD: "CART_ADD",
CART_REMOVE: "CART_REMOVE",
CART_VISIBLE: "CART_VISIBLE",
SET_SELECTED: "SET_SELECTED",
RECEIVE_DATA: "RECEIVE_DATA"
};