You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
312 B
14 lines
312 B
// Game mode actions and action creators.
|
|
export const MODE_ACTION = 'MODE_ACTION';
|
|
export const WELCOME = 'WELCOME';
|
|
export const BOARD = 'BOARD';
|
|
|
|
export const welcomeMode = () => ({
|
|
type: MODE_ACTION,
|
|
action: WELCOME
|
|
});
|
|
|
|
export const boardMode = () => ({
|
|
type: MODE_ACTION,
|
|
action: BOARD
|
|
});
|
|
|