2022-07-29 13:45:20 +02:00

15 lines
223 B
Handlebars

/**
*
* {{ name }} actions
*
*/
import { DEFAULT_ACTION } from './constants';
// eslint-disable-next-line import/prefer-default-export
export const defaultAction = () => {
return {
type: DEFAULT_ACTION,
};
};