Choices/src/scripts/actions/misc.js
2018-05-28 16:22:22 +01:00

9 lines
127 B
JavaScript

export const clearAll = () => ({
type: 'CLEAR_ALL',
});
export const resetTo = state => ({
type: 'RESET_TO',
state,
});