Skip to content

Instantly share code, notes, and snippets.

@Lin4ipsum
Last active February 24, 2021 20:14
Show Gist options
  • Save Lin4ipsum/f0ab6ad2637b1d3cc598de584f20c0b8 to your computer and use it in GitHub Desktop.
Save Lin4ipsum/f0ab6ad2637b1d3cc598de584f20c0b8 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const hungrylMachine = Machine({
id: "hungry",
initial: "fridge",
states: {
fridge: {
on: {
cook: "cook",
order: "order",
go_to_moms_house: "moms"
}
},
cook: {
on: {
DELISH_MEAL: "full",
BAD_COOK: "starve"
}
},
moms: {
on: {
LASANGA: "full",
MOMS_NOT_HOME: "starve"
}
},
order: {
on: {
PIZZA: "full",
ORDER_GOOD_NEW_FOOD: "full",
ORDER_BAD_NEW_FOOD: "starve",
}
},
full: {
type: "final"
},
starve: {
type: "final"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment