1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/client/src/entry-actions/core.js

11 lines
170 B
JavaScript
Raw Normal View History

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