-
Notifications
You must be signed in to change notification settings - Fork 1
/
actionsBundle.ts
34 lines (33 loc) · 1.04 KB
/
actionsBundle.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export {
ActionTypes,
} from '../actions/ActionTypes';
import {
createBookmarkAction,
} from '../actions/creators/createBookmarkAction';
import {
createPassageNavigationAction,
} from '../actions/creators/createPassageNavigationAction';
import {
createPassageTimeAction,
} from '../actions/creators/createPassageTimeAction';
import {
createStoryRequiresFullRerenderAction,
} from '../actions/creators/createStoryRequiresFullRerenderAction';
import {
createStoryResetAction,
} from '../actions/creators/createStoryResetAction';
import {
createStoryRewindAction,
} from '../actions/creators/createStoryRewindAction';
import {
createStoryStateAction,
} from '../actions/creators/createStoryStateAction';
export const actionCreators = {
bookmark: createBookmarkAction,
passageNavigation: createPassageNavigationAction,
passageTime: createPassageTimeAction,
storyRequiresFullRerender: createStoryRequiresFullRerenderAction,
storyReset: createStoryResetAction,
storyRewind: createStoryRewindAction,
storyState: createStoryStateAction,
};