Skip to content

Instantly share code, notes, and snippets.

@mfaridzia
Created November 28, 2022 09:22
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 mfaridzia/0d8a8418a9eea21dfc8734f9617de578 to your computer and use it in GitHub Desktop.
Save mfaridzia/0d8a8418a9eea21dfc8734f9617de578 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const trafficLightMachine = Machine({
id: "trafficLight",
initial: "green",
states: {
green: {
on: { TO_YELLOW: "yellow" }
},
yellow: {
on: { TO_RED: "red" }
},
red: {
on: { TO_GREEN: "green" }
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment