mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
|
import EntryActionTypes from '../constants/EntryActionTypes';
|
||
|
|
||
|
const logout = () => ({
|
||
|
type: EntryActionTypes.LOGOUT,
|
||
|
payload: {},
|
||
|
});
|
||
|
|
||
|
export default {
|
||
|
logout,
|
||
|
};
|