Skip to content

Instantly share code, notes, and snippets.

@lbineau
Last active December 4, 2020 14:11
Show Gist options
  • Save lbineau/282f36d634d5a721291ced738d8e1dc2 to your computer and use it in GitHub Desktop.
Save lbineau/282f36d634d5a721291ced738d8e1dc2 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const waterMachine = Machine({
id: 'waterMachine',
initial: 'ice',
states: {
ice: {
on: {
FUSION: 'liquid',
SUBLIMATION: 'gas'
}
},
liquid: {
on: {
SOLIDIFICATION: 'ice',
VAPORISATION: 'gas'
}
},
gas: {
on: {
CONDENSATION: 'ice',
LIQUEFACTION: 'liquid'
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment