Skip to content

Instantly share code, notes, and snippets.

@saschwarz
Created March 13, 2020 19:17
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 saschwarz/6a232ea1119dd09a2b3189c8a47e4744 to your computer and use it in GitHub Desktop.
Save saschwarz/6a232ea1119dd09a2b3189c8a47e4744 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const dogLifeMachine = Machine({
id: 'dogLife',
initial: 'bored',
context: {
},
states: {
bored: {
on: {
LETS_PLAY: 'door'
}
},
door: {
on: {
OPEN: 'play',
CLOSE: 'bored'
}
},
play: {
on: {
INSIDE: 'bored'
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment