Skip to content

Instantly share code, notes, and snippets.

@Platekun
Created December 3, 2019 19:25
Show Gist options
  • Save Platekun/decb1d2e6bce67c477d87313e48b7c14 to your computer and use it in GitHub Desktop.
Save Platekun/decb1d2e6bce67c477d87313e48b7c14 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 fetchMachine = Machine({
id: 'Curvi Machine',
initial: 'No Emburrado',
states: {
'No Emburrado': {
on: {
RILIS: 'Emburrado'
}
},
'Emburrado': {
on: {
RILIS_DONE: 'No Emburrado'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment