Rev 1644 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
export const actionsTypes = {
SHOW_MODAL: 'Show modal',
CLOSE_MODAL: 'Close modal'
}
export const showReportModal = (
payload = { type: 'Publicación', reportUrl: '', onComplete: () => {} }
) => ({
type: actionsTypes.SHOW_MODAL,
payload
})
export const closeReportModal = () => ({
type: actionsTypes.CLOSE_MODAL
})