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