Skip to content

Instantly share code, notes, and snippets.

@jinnkhan88
Last active June 4, 2021 20:29
Show Gist options
  • Save jinnkhan88/1263f50a341672384af58fe07260ff14 to your computer and use it in GitHub Desktop.
Save jinnkhan88/1263f50a341672384af58fe07260ff14 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: "lightBulbMachine",
initial: "unlit",
states: {
unlit: {
on: {
BREAK:'broken',
TOOGLE: "lit"
}
},
lit: {
exit:(context,event)=>{
console.log('it is dark and cold')
},
on: {
BREAK: 'broken',
TOOGLE: "unlit"
}
},
broken: {
entry:['logMeBroken']
}
}
},{
actions:{
logMeBroken:(context,event)=>{
console.log(`yo i am broke ${event.location}`)
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment