Last active
February 6, 2020 15:33
-
-
Save CAWeissen/afb55b8fc1c023d4d0c61761b73de04b 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 lightMachine = Machine({ | |
id: 'light', | |
initial: 'green', | |
states: { | |
green: { | |
after: { | |
1500: 'yellow' | |
}, | |
on: { | |
CHANGE: 'yellow' | |
} | |
}, | |
yellow: { | |
after: { | |
500: 'red' | |
}, | |
on: { | |
CHANGE: 'red' | |
} | |
}, | |
red: { | |
after: { | |
2000: 'green' | |
}, | |
on: { | |
CHANGE: 'green' | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment