gab-social/app/javascript/gabsocial/actions/modal.js

13 lines
250 B
JavaScript
Raw Normal View History

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