productDetail.js
426 Bytes
import {
SHOWSIZEBOX,
SHOWSHARESHEET,
SHOWSNAPSHOT
} from '../constants/productDetail'
export const showSizeBox = (isShow) => {
return {
isShow,
type: SHOWSIZEBOX
}
}
export const showSharesheet = (isShow) => {
return {
isShow,
type: SHOWSHARESHEET
}
}
export const showSnapshot = (isShow) => {
return {
isShow,
type: SHOWSNAPSHOT
}
}