brand.js
336 Bytes
import {
MODIFYZOOM
} from '../constants/brand'
export const modifyZoom = (curZoom) => {
return {
curZoom,
type: MODIFYZOOM
}
}
// 异步的 action
// export function asyncAdd () {
// return dispatch => {
// setTimeout(() => {
// dispatch(add())
// }, 2000)
// }
// }