UNPKG

nexshop-web-contents

Version:

Nexshop Web Contents Project

14 lines (12 loc) 301 B
export const OPEN_FLOATING_VIEW = 'OPEN_FLOATING_VIEW'; export const CLOSE_FLOATING_VIEW = 'CLOSE_FLOATING_VIEW'; export function openFloatingView() { return { type: OPEN_FLOATING_VIEW, } } export function closeFloatingView() { return { type: CLOSE_FLOATING_VIEW, } }