pagraphcontrol/actions/preferences.js
2018-11-22 17:12:53 +03:00

13 lines
286 B
JavaScript

const { createActions: createActionCreators } = require('redux-actions');
module.exports = createActionCreators({
PREFERENCES: {
SET: null,
TOGGLE: null,
RESET_DEFAULTS: null,
SET_ADD: (key, value) => ({ key, value }),
SET_DELETE: (key, value) => ({ key, value }),
},
});