%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/src/modules/data/shared/move/ |
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/src/modules/data/shared/move/actions.js |
/* eslint-disable camelcase */ /** * Internal Dependencies */ import * as types from './types'; export const showModal = ( ticketId, clientId, ) => ( { type: types.SHOW_MODAL, payload: { ticketId, clientId }, } ); export const hideModal = () => ( { type: types.HIDE_MODAL, } ); export const setModalData = ( payload ) => ( { type: types.SET_MODAL_DATA, payload, } );