Skip to content

Instantly share code, notes, and snippets.

@sam-b-rose
Created November 23, 2021 19:07
Show Gist options
  • Save sam-b-rose/0f487d170bac7a5f94494cd923d721d5 to your computer and use it in GitHub Desktop.
Save sam-b-rose/0f487d170bac7a5f94494cd923d721d5 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const countdownMachine = Machine({
id: "countdown",
initial: "initial",
states: {
initial: { on: { PLAY: "playing" } },
playing: { on: { PAUSE: "paused", RESET: "initial" } },
paused: { on: { PLAY: "playing", RESET: "initial" } },
finished: { on: { RESET: "initial" } },
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment