Skip to content

Instantly share code, notes, and snippets.

@robertpenner
Last active August 9, 2021 19:06
Show Gist options
  • Save robertpenner/8d599cbdbfa95b76c807997f07e9a01c to your computer and use it in GitHub Desktop.
Save robertpenner/8d599cbdbfa95b76c807997f07e9a01c to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'DRAKE',
initial: 'displeased',
states: {
displeased: {
on: {
'SEES BETTER OPTION': 'pleased'
},
},
pleased: {},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment