Skip to content

Instantly share code, notes, and snippets.

@MarcelMalik
Last active July 7, 2021 22:52
Show Gist options
  • Save MarcelMalik/322de5f73f9fc061d8ce57bf25e0cdea to your computer and use it in GitHub Desktop.
Save MarcelMalik/322de5f73f9fc061d8ce57bf25e0cdea to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const waterMachine = Machine({
id: 'water',
initial: 'liquid',
states: {
ice: {
on: {
HEAT: {
target: "liquid"
}
}
},
liquid: {
on: {
HEAT: {
target: "gas"
},
FREEZE: {
target: 'ice'
}
}
},
gas: {
on: {
HEAT: {
target: "plasma"
},
FREEZE: {
target: "liquid"
}
}
},
plasma: {
on: {
FREEZE: {
target: "gas"
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment