Created
December 8, 2018 18:59
-
-
Save runandrerun/9828e5d86a479fa464cd68e23864a41c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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