Skip to content

Instantly share code, notes, and snippets.

@lozandier
Last active March 11, 2020 17:52
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 lozandier/5cdf77a2b68c9ec206b0204428346a6d to your computer and use it in GitHub Desktop.
Save lozandier/5cdf77a2b68c9ec206b0204428346a6d 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 fetchMachine = Machine({
id: 'stopLight',
initial: 'red',
states: {
red: {
after: { 3000: 'green' },
},
yellow: {
after: { 2000: 'red' },
},
green: {
after: { 4000: 'yellow' },
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment