Skip to content

Instantly share code, notes, and snippets.

@LevelbossMike
Created November 16, 2020 13:09
Show Gist options
  • Select an option

  • Save LevelbossMike/c85d2b0c03b085ed32e05570c0d3c533 to your computer and use it in GitHub Desktop.

Select an option

Save LevelbossMike/c85d2b0c03b085ed32e05570c0d3c533 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 machine = Machine({
id: 'machine',
initial: 'a',
states: {
a: {
on: {
ONE: {
actions: 'closeModal'
},
TWO: 'b',
THREE: 'c'
}
},
b: {
on: {
FORWARD: 'c'
}
},
c: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment