Skip to content

Instantly share code, notes, and snippets.

@ika18
Last active February 8, 2020 11:49
Show Gist options
  • Save ika18/ffeffc121224be5401170e1d3f9d617b to your computer and use it in GitHub Desktop.
Save ika18/ffeffc121224be5401170e1d3f9d617b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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