show-sidebar.js 341 B

123456789101112131415
  1. import * as types from "../actionTypes/actionTypes";
  2. const initialState = {
  3. showSidebar: true
  4. }
  5. export default (state = initialState, action) => {
  6. switch (action.type) {
  7. case types.SHOW_SIDEBAR: {
  8. return { ...state, showSidebar: !state.showSidebar };
  9. }
  10. default:
  11. return state;
  12. }
  13. }