mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
9 lines
219 B
JavaScript
9 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: {},
|
|
});
|