From 58cda9cc7fb79ca9df6746de7f9662bc08dc156a Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Fri, 13 Oct 2017 12:29:40 +0200 Subject: initial commit --- src/actions/index.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/actions/index.js (limited to 'src/actions/index.js') diff --git a/src/actions/index.js b/src/actions/index.js new file mode 100644 index 000000000..59acabb0b --- /dev/null +++ b/src/actions/index.js @@ -0,0 +1,28 @@ +import PropTypes from 'prop-types'; + +import defineActions from './lib/actions'; +import service from './service'; +import recipe from './recipe'; +import recipePreview from './recipePreview'; +import ui from './ui'; +import app from './app'; +import user from './user'; +import payment from './payment'; +import news from './news'; +import settings from './settings'; +import requests from './requests'; + +const actions = Object.assign({}, { + service, + recipe, + recipePreview, + ui, + app, + user, + payment, + news, + settings, + requests, +}); + +export default defineActions(actions, PropTypes.checkPropTypes); -- cgit v1.2.3-54-g00ecf