Skip to content

Instantly share code, notes, and snippets.

@awave1
Created September 1, 2021 22:32
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 awave1/f00a088e60bbc20cc5efdef288fde0c0 to your computer and use it in GitHub Desktop.
Save awave1/f00a088e60bbc20cc5efdef288fde0c0 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: "challenge-state",
initial: "draft",
states: {
draft: {
on: {
CREATE: "created"
}
},
created: {
on: {
PAUSE: "paused",
TERMINATE: "terminated"
}
},
paused: {
on: {
RESUME: "created"
}
},
active: {},
terminated: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment