Files
bigcapital/client/src/store/authentication/authentication.actions.js
2021-09-08 16:27:16 +02:00

5 lines
197 B
JavaScript

import t from 'store/types';
export const setLogin = () => ({ type: t.LOGIN_SUCCESS });
export const setLogout = () => ({ type: t.LOGOUT });
export const setStoreReset = () => ({ type: t.RESET });