UNPKG
react-redux-starter-thibault
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Starter Kit for React + Redux application with Webpack
react-redux-starter-thibault
/
src
/
scripts
/
actions
/
actionTypes.js
18 lines
(15 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
{generateActions} from
"js/utils/actions"
;
/** * Actions to be generated. */
const
actions = [
"NEW_TILE"
,
"MOVE_TILES"
,
"ACTUALIZE"
,
"MERGE_TILES"
,
"INIT_GAME"
,
"GAME_OVER"
,
"SAVE_GAME"
,
"RESET_RESULT"
];
export
default
generateActions
(actions)
;