Skip to content

Instantly share code, notes, and snippets.

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