Skip to content

Instantly share code, notes, and snippets.

@dankremniov
Created October 21, 2021 12:26
Show Gist options
  • Save dankremniov/62bd1ed8ea392c8e745576ef8ee87574 to your computer and use it in GitHub Desktop.
Save dankremniov/62bd1ed8ea392c8e745576ef8ee87574 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: 'liabilityUpload',
initial: 'uploadCashFlow',
context: {
retries: 0
},
states: {
uploadCashFlow: {
initial: 'hist',
states: {
fromFile: {},
fromPrevious: {},
hist: {
type: 'history'
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment