Skip to content

Instantly share code, notes, and snippets.

@jeremy-green
Created September 13, 2019 16:35
Show Gist options
  • Save jeremy-green/156467f540d8ff86bed90759119af6fb to your computer and use it in GitHub Desktop.
Save jeremy-green/156467f540d8ff86bed90759119af6fb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
new Machine({
id: `switch`,
initial: 'on',
context: {},
states: {
on: {
on: {
TOGGLE: 'off',
},
},
off: {
on: {
TOGGLE: 'on',
},
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment