Skip to content

Instantly share code, notes, and snippets.

@jinnkhan88
Last active June 4, 2021 20:45
Show Gist options
  • Save jinnkhan88/eb42814fc4dc259511a6fa1950fab6f9 to your computer and use it in GitHub Desktop.
Save jinnkhan88/eb42814fc4dc259511a6fa1950fab6f9 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:(context,event)=>{
console.log('echo echo')
}
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment