15 lines
223 B
Handlebars
Raw Normal View History

/**
2021-07-21 20:08:17 +02:00
*
2022-07-29 13:45:20 +02:00
* {{ name }} actions
2021-07-21 20:08:17 +02:00
*
*/
import { DEFAULT_ACTION } from './constants';
// eslint-disable-next-line import/prefer-default-export
2021-07-21 20:08:17 +02:00
export const defaultAction = () => {
return {
type: DEFAULT_ACTION,
};
};