Skip to content

Instantly share code, notes, and snippets.

@avanslaars
Created November 16, 2019 14:23
Show Gist options
  • Save avanslaars/7a07bf996f8bb139d0bd626511bca1f4 to your computer and use it in GitHub Desktop.
Save avanslaars/7a07bf996f8bb139d0bd626511bca1f4 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const toggleMachine = Machine({
id: 'toggle',
initial: 'active',
states: {
active: {
on: {
TOGGLE: 'inactive'
}
},
inactive: {
on: {
TOGGLE: 'active'
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment