Skip to content

Instantly share code, notes, and snippets.

@s-m-i-t-a
Created May 20, 2020 18:21
Show Gist options
  • Save s-m-i-t-a/0344a099fc7a24ab82959b918c619af6 to your computer and use it in GitHub Desktop.
Save s-m-i-t-a/0344a099fc7a24ab82959b918c619af6 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 fakeGeneratorMachine = Machine({
id: 'fakeGenerator',
initial: 'idle',
states: {
idle: {
on: {
START: 'running'
}
},
running: {
on: {
STOP: 'halted'
}
},
halted: {
on: {
START: 'running'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment