Created
April 20, 2020 20:43
-
-
Save rootart/d01f9d9e75d3bbfeff4a4a00e36da7c6 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 door = Machine({ | |
| id: 'door', | |
| initial: 'locked', | |
| states: { | |
| locked: { | |
| on: { | |
| UNLOCK: 'unlocked', | |
| } | |
| }, | |
| unlocked: { | |
| initial: 'closed', | |
| states: { | |
| closed: { | |
| on: { | |
| OPEN: 'opened', | |
| LOCK: '#door.locked' | |
| } | |
| }, | |
| opened: { | |
| on: { | |
| CLOSE: 'closed' | |
| } | |
| } | |
| } | |
| } | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment