victorpopkov/universal-redux

View on GitHub
src/app/event/loading/duck/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
import types from './types';

const notifyProgressShow = () => ({
  type: types.NOTIFY_PROGRESS_SHOW,
});

const notifyProgressHide = () => ({
  type: types.NOTIFY_PROGRESS_HIDE,
});

export default {
  notifyProgressShow,
  notifyProgressHide,
};