Skip to content

Instantly share code, notes, and snippets.

@kevinold
Created March 24, 2020 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinold/7f8dab1961d8d2f4c33d06f277b1469e to your computer and use it in GitHub Desktop.
Save kevinold/7f8dab1961d8d2f4c33d06f277b1469e to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const edibleMachine = Machine({
key: "Is Food Edible?",
id: "edible",
initial: 'edible',
states: {
edible: {
on: {
TWO_DAYS_PASS: 'stillGood'
}
},
stillGood: {
on: {
TWO_WEEKS_PASS: 'risky'
}
},
risky: {
type: 'final'
}
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment