Created
May 14, 2020 06:23
-
-
Save kappuccino/43bb0d228f1a366e8dc312961775d428 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 idleMachine = Machine({ | |
id: 'idle', | |
initial: 'idle', | |
states: { | |
idle: { | |
entry: 'logEntry', | |
exit: 'logExit' | |
} | |
}, | |
on:{ | |
DO_NOTHING: '.idle' | |
} | |
}, { | |
actions:{ | |
logEntry: () => console.log('Entered'), | |
logExit: () => console.log('Exited') | |
} | |
}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment