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