Last active
July 24, 2019 18:34
-
-
Save ArthurYidi/e8c530e2ca4220f479c760a62d672537 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: '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