Files
planka/client/src/entry-actions/core.js

17 lines
282 B
JavaScript
Raw Normal View History

2022-08-04 13:31:14 +02:00
import EntryActionTypes from '../constants/EntryActionTypes';
const initializeCore = () => ({
type: EntryActionTypes.CORE_INITIALIZE,
payload: {},
});
const logout = () => ({
type: EntryActionTypes.LOGOUT,
payload: {},
});
export default {
initializeCore,
logout,
};