Last active
September 19, 2019 23:15
-
-
Save laduke/645f066f9b05025d011ee228a6383500 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 myMachine = Machine({ | |
type: 'parallel', | |
context: {}, | |
states: { | |
hi: { | |
initial: 'no', | |
states: { | |
yes: {}, | |
no: { on: { CLICK_ME: 'yes' } } | |
} | |
}, | |
bye: { | |
initial: 'no', | |
states: { | |
yes: {}, | |
no: {} | |
} | |
} | |
}, | |
on: { | |
THEN_ME: { actions: 'myAction' } | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment