Files
Eventment/app/actions/index.js
2019-07-24 00:53:01 -04:00

13 lines
187 B
JavaScript

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