Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Created November 5, 2019 21:07
Show Gist options
  • Save sebjwallace/ee1f3ab9c25ed2126c9e2a7186de1c2a to your computer and use it in GitHub Desktop.
Save sebjwallace/ee1f3ab9c25ed2126c9e2a7186de1c2a to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'transistor',
initial: 'off',
states: {
off: {
on: {
HIGH: 'on',
LOW: 'off'
}
},
on: {
on: {
HIGH: 'on',
LOW: 'off'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment