Skip to content

Instantly share code, notes, and snippets.

@codedplanetuk
Created October 6, 2019 19:21
Show Gist options
  • Save codedplanetuk/046cdde0a58c6e4ab5e417af0435c398 to your computer and use it in GitHub Desktop.
Save codedplanetuk/046cdde0a58c6e4ab5e417af0435c398 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: 'fetcher',
initial: 'job needs doing',
context: {
retries: 0
},
states: {
'job needs doing': {
on: {
'FEEL LIKE IT': 'do it',
'DONT FEEL LIKE IT': 'do it anyway'
}
},
'do it': {
type: 'final'
},
'do it anyway': {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment