productDetail.js
339 Bytes
import { SHOWSIZEBOX } from '../constants/productDetail'
const INITIAL_STATE = {
showSizeBox: false
}
export default function productDetail (state = INITIAL_STATE, action) {
switch (action.type) {
case SHOWSIZEBOX:
return {
...state,
showSizeBox: action.isShow
}
default:
return state
}
}