Created
April 3, 2020 22:52
-
-
Save jasonleonhard/9212a9a764292e80cdcbcfda3feb66bf 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 lifeMachine = Machine({ | |
id: 'life', | |
initial: 'alive', | |
context: { | |
retries: 0 | |
}, | |
states: { | |
alive: { | |
on: { | |
KILL: 'dying' | |
} | |
}, | |
dying: { | |
on: { | |
RESUSCITATE: 'alive', | |
PRONOUNCE: 'dead' | |
} | |
}, | |
dead: { | |
type: 'final' | |
}, | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment