mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
5 lines
197 B
JavaScript
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 }); |