filterMenu.js
296 Bytes
import {CHANGETYPE} from '../constants/filterMenu'
const INITIAL_STATE = {
curType: 0
}
export default function filterMenu (state = INITIAL_STATE, action) {
switch (action.type) {
case CHANGETYPE:
return {
...state,
curType: action.curType
}
default:
return state
}
}