Skip to content

Instantly share code, notes, and snippets.

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