Created
October 30, 2020 11:04
-
-
Save dorelljames/22f0b7c45ceff0bd8287c1bb67f6d775 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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