Skip to content

Instantly share code, notes, and snippets.

@BobToninho
Last active July 12, 2021 16:51
Show Gist options
  • Save BobToninho/3aa465dd3124e4060f393e7ea3ebb184 to your computer and use it in GitHub Desktop.
Save BobToninho/3aa465dd3124e4060f393e7ea3ebb184 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 maneuverMachine = Machine({
id: 'maneuver-machine',
initial: 'future',
states: {
future: {
on: {
TERMINATE: 'terminated',
RUNNING: 'running'
}
},
terminated: {
type: 'final'
},
running: {
on: {
TERMINATE: 'terminated'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment