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.
13 lines
337 B
13 lines
337 B
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
|
|
});
|
|
|