Skip to content

Instantly share code, notes, and snippets.

@colorfield
Created May 31, 2022 20:55
Show Gist options
  • Save colorfield/d7921a483c41367a747a59b1cb42d259 to your computer and use it in GitHub Desktop.
Save colorfield/d7921a483c41367a747a59b1cb42d259 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const toggleMachine = new Machine({
id: 'toggleMachine',
initial: 'inactive',
states: {
inactive: {
on: {
TOGGLE: 'active'
}
},
active: {
on: {
TOGGLE: 'inactive'
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment