123456789101112131415 |
- import * as types from "../actionTypes/actionTypes";
- const initialState = {
- showSidebar: true
- }
- export default (state = initialState, action) => {
- switch (action.type) {
- case types.SHOW_SIDEBAR: {
- return { ...state, showSidebar: !state.showSidebar };
- }
- default:
- return state;
- }
- }
|