Skip to content

Instantly share code, notes, and snippets.

@tklepzig
Created October 4, 2020 16:08
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 tklepzig/24af0af8024dffa5f206d135ae9e85c5 to your computer and use it in GitHub Desktop.
Save tklepzig/24af0af8024dffa5f206d135ae9e85c5 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: "machine",
initial: "A",
states: {
A: {
after: {
2_000: "B",
},
},
B: {
after: {
2_000: "C",
},
},
C: {
after: {
2_000: "A",
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment