Skip to content

Instantly share code, notes, and snippets.

@ArthurYidi
Last active July 24, 2019 18:34
Show Gist options
  • Save ArthurYidi/e8c530e2ca4220f479c760a62d672537 to your computer and use it in GitHub Desktop.
Save ArthurYidi/e8c530e2ca4220f479c760a62d672537 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'Outbound Call',
initial: 'Connected',
states: {
Connected: {
on: {
failed: 'loading',
hasTour: 'LeadAdded',
}
},
TourAdded: {
},
LeadAdded: {
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment