Skip to content

Instantly share code, notes, and snippets.

@kappuccino
Created May 14, 2020 06:26
Show Gist options
  • Save kappuccino/297f69217f3d416655afa3f861374263 to your computer and use it in GitHub Desktop.
Save kappuccino/297f69217f3d416655afa3f861374263 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({type: '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