Skip to content

Instantly share code, notes, and snippets.

@Jpadilla1
Last active December 22, 2019 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jpadilla1/bbe56fe720eef19fbf58c761571fa6b4 to your computer and use it in GitHub Desktop.
Save Jpadilla1/bbe56fe720eef19fbf58c761571fa6b4 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const lightBulbMachine = Machine({
id: "house",
initial: "init",
states: {
init: {
entry: "spawnLightBulbs",
on: {
"": "lightsOn"
}
},
lightsOn: {
on: {
lightBulbOff: {
target: "lightsOff",
cond: "areAllLightsOff"
}
}
},
lightsOff: {
on: {
lightBulbOn: {
target: "lightsOn",
cond: "areAllLightsOn"
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment