This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
export const MODAL_OPEN = 'MODAL_OPEN';
|
|
export const MODAL_CLOSE = 'MODAL_CLOSE';
|
|
|
|
export function openModal(type, props) {
|
|
return {
|
|
type: MODAL_OPEN,
|
|
modalType: type,
|
|
modalProps: props
|
|
};
|
|
};
|
|
|
|
export function closeModal() {
|
|
return {
|
|
type: MODAL_CLOSE
|
|
};
|
|
};
|