gengitkan/client/src/store/actions/logout.js

5 lines
89 B
JavaScript
Raw Normal View History

2019-12-01 22:12:13 +01:00
export const LOGOUT = "LOGOUT";
export function logout() {
return { type: LOGOUT };
};