Skip to content

Instantly share code, notes, and snippets.

@mwarger
Created July 14, 2021 17:03
Show Gist options
  • Save mwarger/f2088218e2aa59759d6545927313500e to your computer and use it in GitHub Desktop.
Save mwarger/f2088218e2aa59759d6545927313500e to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'toggle',
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