import { currentViewActionTypes } from "./action"; const currentViewInitialState = { currentView: {}, }; export default function reducer(state = currentViewInitialState, action) { switch (action.type) { case currentViewActionTypes.SETCURRENTVIEW: return { ...state, currentView: action.currentView, }; default: return state; } }