Created
July 25, 2019 22:39
-
-
Save ArthurYidi/d7c8269dccf964d3ed9a25b771a1c6b5 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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