Skip to content

Instantly share code, notes, and snippets.

@andyngo
Created November 26, 2019 13:55
Show Gist options
  • Save andyngo/307bb8cdc67460930a3da3e18e142c24 to your computer and use it in GitHub Desktop.
Save andyngo/307bb8cdc67460930a3da3e18e142c24 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 = new Machine({
id: 'toggleMachine',
initial: 'ready',
states: {
ready: {
initial: 'paused',
states: {
paused: {
on: {
TOGGLE: 'playing'
}
},
playing: {
on: {
TOGGLE: 'paused',
PAUSE: 'paused'
}
},
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment