Skip to content

Instantly share code, notes, and snippets.

@runandrerun
Created December 8, 2018 18:59
Show Gist options
  • Save runandrerun/9828e5d86a479fa464cd68e23864a41c to your computer and use it in GitHub Desktop.
Save runandrerun/9828e5d86a479fa464cd68e23864a41c to your computer and use it in GitHub Desktop.
const initialBodegaState = {
insideBodega: false,
choppedCheese: 10,
catMood: "Neutral",
};
const ENTER = {
type: 'ENTER_BODEGA',
};
const BUYFOOD = {
type: 'BUY_CHOPPED_CHEESE',
buy: 1,
};
const PETCAT = {
type: 'PET_BODEGA_CAT',
};
const LEAVE = {
type: 'LEAVE_BODEGA',
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment