Last active
September 23, 2021 12:18
-
-
Save sebastiancarlsson/3a40ded13a3d05c33b0112a452998a23 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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({ | |
initial: 'green', | |
states: { | |
green: { | |
on: { | |
TICK_EVENT: 'yellow' | |
} | |
}, | |
yellow: { | |
on: { | |
TICK_EVENT: 'red', | |
} | |
}, | |
red: { | |
on: { | |
TICK_EVENT: 'green' | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment