Files
Eventment/app/actions/index.js

10 lines
186 B
JavaScript

import { BLOCK_UI, UNBLOCK_UI } from '../constants/actionTypes.js';
export const blockUI = () => ({
type: BLOCK_UI,
});
export const unblockUI = () => ({
type: UNBLOCK_UI,
});