Last active
December 4, 2020 14:11
-
-
Save lbineau/282f36d634d5a721291ced738d8e1dc2 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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