Skip to content

Instantly share code, notes, and snippets.

@lucassus
Created February 12, 2020 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucassus/841e3b937bb1669758514cfbf56cdcfa to your computer and use it in GitHub Desktop.
Save lucassus/841e3b937bb1669758514cfbf56cdcfa to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
initial: "idle",
states: {
idle: {
invoke: {
src: "fetchUser",
onDone: {
target: "mainApp"
},
onError: {
target: "loginApp"
}
}
},
mainApp: {},
loginApp: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment