You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
309 B

  1. export const MODAL_OPEN = 'MODAL_OPEN';
  2. export const MODAL_CLOSE = 'MODAL_CLOSE';
  3. export function openModal(type, props) {
  4. return {
  5. type: MODAL_OPEN,
  6. modalType: type,
  7. modalProps: props,
  8. };
  9. };
  10. export function closeModal(type) {
  11. return {
  12. type: MODAL_CLOSE,
  13. modalType: type,
  14. };
  15. };