File size: 307 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export const SHOW_MODAL = 'SHOW_MODAL';
export const HIDE_MODAL = 'HIDE_MODAL';
export const showModal = (modalType, modalProps) => dispatch => (
dispatch({
type: SHOW_MODAL,
modalType,
modalProps
})
);
export const hideModal = () => dispatch => (
dispatch({
type: HIDE_MODAL
})
); |