Last active
May 9, 2020 17:55
-
-
Save prabuw/752e51f243104c7a6ac4bde3b0d45eeb 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 counterMachine = Machine({ | |
initial: 'red', | |
states: { | |
red: { | |
on: { | |
'GO': 'green', | |
} | |
}, | |
green: { | |
on: { | |
'SLOW.DOWN': 'amber' | |
} | |
}, | |
amber: { | |
on: { | |
'STOP': 'red' | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment