brand.js
313 Bytes
import { MODIFYZOOM } from '../constants/brand'
const INITIAL_STATE = {
curZoom: ''
}
export default function brand (state = INITIAL_STATE, action) {
switch (action.type) {
case MODIFYZOOM:
return {
...state,
curZoom: action.curZoom
}
default:
return state
}
}