Skip to content

Instantly share code, notes, and snippets.

@ethan605
Created April 14, 2021 15:58
Show Gist options
  • Save ethan605/a8f02bd86162730586d2b73effa84696 to your computer and use it in GitHub Desktop.
Save ethan605/a8f02bd86162730586d2b73effa84696 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const trafficLight = Machine({
id: 'trafficLight',
initial: 'red',
states: {
red: {
on: {
TIMER: 'amber'
}
},
amber: {
on: {
TIMER: 'green'
}
},
green: {
on: {
TIMER: 'red'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment