Files
planka/client/src/entry-actions/core.js
Maksim Eltyshev 3714bbc06f ref: Refactoring
2022-08-04 13:31:14 +02:00

17 lines
282 B
JavaScript

import EntryActionTypes from '../constants/EntryActionTypes';
const initializeCore = () => ({
type: EntryActionTypes.CORE_INITIALIZE,
payload: {},
});
const logout = () => ({
type: EntryActionTypes.LOGOUT,
payload: {},
});
export default {
initializeCore,
logout,
};