main.ts 322 B

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