Last active
February 8, 2020 11:49
-
-
Save ika18/ffeffc121224be5401170e1d3f9d617b 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 echoMachine = Machine({ | |
id: 'echo', | |
initial: 'listening', | |
states: { | |
listening: { | |
on: { | |
SPEAK: { | |
actions: send('ECHO') | |
}, | |
ECHO: { | |
actions: () => { | |
console.log('echo, echo') | |
} | |
} | |
} | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment