Skip to content

Instantly share code, notes, and snippets.

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