mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 17:10:08 +00:00
15 lines
223 B
Handlebars
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,
|
|
};
|
|
};
|