15 lines
221 B
Handlebars
Raw Normal View History

/**
2021-07-21 20:08:17 +02:00
*
* {{name}} actions
*
*/
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,
};
};