Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Last active November 5, 2019 21:33
Show Gist options
  • Save sebjwallace/531d421f1eb190aecf05c4a13da382f4 to your computer and use it in GitHub Desktop.
Save sebjwallace/531d421f1eb190aecf05c4a13da382f4 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'AND',
initial: 'off',
states: {
off: {
on: {
1: 'x',
0: 'y'
}
},
x: {
on: {
1: 'on',
0: 'off'
}
},
y: {
on: {
1: 'off',
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