Skip to content

Instantly share code, notes, and snippets.

@yosevu
Created April 12, 2021 11: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 yosevu/9742d43d57d9ece135f9247abb5a6842 to your computer and use it in GitHub Desktop.
Save yosevu/9742d43d57d9ece135f9247abb5a6842 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const lightBulbMachine = Machine({
id: 'lightBulb',
initial: 'unlit',
states: {
lit: {
on: {
BREAK: 'broken',
TOGGLE: 'unlit',
},
},
unlit: {
on: {
BREAK: 'broken',
TOGGLE: 'lit',
},
},
broken: { type: 'final' },
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment