From 833106ad8d568e19ba4e5cf6816b2f274840117d Mon Sep 17 00:00:00 2001 From: Qolzam Date: Sat, 21 Oct 2017 10:53:20 +0700 Subject: [PATCH] Add index for actions folder to make shorter path for actions --- app/actions/index.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/actions/index.ts diff --git a/app/actions/index.ts b/app/actions/index.ts new file mode 100644 index 0000000..42691b8 --- /dev/null +++ b/app/actions/index.ts @@ -0,0 +1,21 @@ +import * as authorizeActions from './authorizeActions' +import * as circleActions from './circleActions' +import * as commentActions from './commentActions' +import * as globalActions from './globalActions' +import * as imageGalleryActions from './imageGalleryActions' +import * as notifyActions from './notifyActions' +import * as postActions from './postActions' +import * as userActions from './userActions' +import * as voteActions from './voteActions' + +export { + authorizeActions, + circleActions, + commentActions, + globalActions, + imageGalleryActions, + notifyActions, + postActions, + userActions, + voteActions +}