Created
July 25, 2019 22:37
-
-
Save ArthurYidi/00e47c75354241862f1e1ed516c6f259 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: { | |
FA_Ready: { | |
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