main.ts 285 B

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