Skip to content

Instantly share code, notes, and snippets.

@davidpett
Last active October 28, 2019 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidpett/a131966126cb68293b803db0864f1d10 to your computer and use it in GitHub Desktop.
Save davidpett/a131966126cb68293b803db0864f1d10 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 flow = Machine({
id: 'flow',
initial: 'begin',
context: {retries: 0},
states: {
begin: {
on: {
CLICK: 'end',
}
},
end: {
type: 'final',
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment