Skip to content

Instantly share code, notes, and snippets.

@dorelljames
Created October 30, 2020 11:04
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 dorelljames/22f0b7c45ceff0bd8287c1bb67f6d775 to your computer and use it in GitHub Desktop.
Save dorelljames/22f0b7c45ceff0bd8287c1bb67f6d775 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const trafficLightMachine = Machine({
id: "trafficLight",
initial: "red",
on: {
NEXT: "green"
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment