Choices/src/scripts/actions/misc.js

9 lines
127 B
JavaScript
Raw Normal View History

2017-10-10 16:26:38 +02:00
export const clearAll = () => ({
type: 'CLEAR_ALL',
});
2018-05-28 17:22:22 +02:00
export const resetTo = state => ({
type: 'RESET_TO',
state,
});