Skip to content

Instantly share code, notes, and snippets.

@kellyjandrews
Created June 29, 2020 14:51
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 kellyjandrews/a8a33932a88951692a8c94de647db40b to your computer and use it in GitHub Desktop.
Save kellyjandrews/a8a33932a88951692a8c94de647db40b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const lightBulb = Machine({
id: 'lightBulb',
initial: 'off',
states: {
off: {
on: {
TURN_ON: 'on'
}
},
on: {
on: {
TURN_OFF: 'off',
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment