Skip to content

Instantly share code, notes, and snippets.

@sam-b-rose
Last active December 31, 2020 17:18
Show Gist options
  • Save sam-b-rose/8920aced5b898be4f270e82171434d96 to your computer and use it in GitHub Desktop.
Save sam-b-rose/8920aced5b898be4f270e82171434d96 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const toggleMachine = 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