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
388 B

// Scorebar component actions and action creators.
export const SCOREBAR_ACTION = 'SCOREBAR_ACTION';
export const MUNCH_SUCCEEDED = 'MUNCH_SUCCEEDED';
export const MUNCH_FAILED = 'MUNCH_FAILED';
export const munchSucceeded = () => ({
type: SCOREBAR_ACTION,
action: MUNCH_SUCCEEDED,
});
export const munchFailed = () => ({
type: SCOREBAR_ACTION,
action: MUNCH_FAILED
});