Skip to content

Instantly share code, notes, and snippets.

@avanslaars
Last active March 11, 2020 13:28
Show Gist options
  • Save avanslaars/aba85c2ea0b3ae7f052946d1b5692de7 to your computer and use it in GitHub Desktop.
Save avanslaars/aba85c2ea0b3ae7f052946d1b5692de7 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const SignalMachine = Machine({
id: 'signal',
initial: 'red',
states: {
red: {
on: {
TIMER: 'green',
},
after: {
1000: 'green',
},
},
green: {
on: {
TIMER: 'yellow',
},
after: {
1000: 'yellow',
},
},
yellow: {
on: {
TIMER: 'red',
},
after: {
1000: 'red',
},
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment