mirror of
https://github.com/strapi/strapi.git
synced 2025-08-11 02:07:51 +00:00
14 lines
159 B
JavaScript
14 lines
159 B
JavaScript
![]() |
/*
|
||
|
*
|
||
|
* HomePage actions
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import { DEFAULT_ACTION } from './constants';
|
||
|
|
||
|
export function defaultAction() {
|
||
|
return {
|
||
|
type: DEFAULT_ACTION,
|
||
|
};
|
||
|
}
|