123456 |
- import * as types from '../constants/actionTypes';
- export default (dispatch: any) => ({
- switchNavbar: (state: string) => dispatch({ type: types.SWITCH_NAVBAR, payload: { state }}),
- switchSidebar: (state: string) => dispatch({ type: types.SWITCH_SIDEBAR, payload: { state }}),
- });
|