Skip to content

Instantly share code, notes, and snippets.

@saschwarz
Last active March 8, 2020 00:56
Show Gist options
  • Save saschwarz/12be236f588172dee0282e48ff02e0b3 to your computer and use it in GitHub Desktop.
Save saschwarz/12be236f588172dee0282e48ff02e0b3 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const trafficLightMachine = Machine({
id: 'traffic-light',
initial: 'green',
context: {
retries: 0
},
states: {
green: {
on: {
TIME: 'yellow'
}
},
yellow: {
on: {
TIME: 'red'
}
},
red: {
on: {
TIME: 'green'
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment