13 lines
250 B
JavaScript
Raw Normal View History

2020-04-28 01:33:58 -04:00
export const MODAL_OPEN = 'MODAL_OPEN'
export const MODAL_CLOSE = 'MODAL_CLOSE'
2019-07-02 03:10:25 -04:00
2020-11-15 12:48:32 -06:00
export const openModal = (type, props) => ({
type: MODAL_OPEN,
modalType: type,
modalProps: props,
})
2019-07-02 03:10:25 -04:00
2020-11-15 12:48:32 -06:00
export const closeModal = () => ({
type: MODAL_CLOSE,
})