mirror of
https://github.com/plankanban/planka.git
synced 2025-07-23 15:19:44 +02:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
|
import ActionTypes from '../constants/ActionTypes';
|
||
|
|
||
|
/* Events */
|
||
|
|
||
|
// eslint-disable-next-line import/prefer-default-export
|
||
|
export const appInitialized = () => ({
|
||
|
type: ActionTypes.APP_INITIALIZED,
|
||
|
payload: {},
|
||
|
});
|