Last active
April 21, 2021 05:41
-
-
Save Krutie/331691dc2b885e3710bdc985c090daf5 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
// MATTER MACHINE | |
// =================== | |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) | |
const matterMachine = Machine({ | |
id: 'matter', | |
initial: 'solid', | |
states: { | |
solid: { | |
on: { | |
MELT: 'liquid' | |
} | |
}, | |
liquid: { | |
on: { | |
VAPORIZE: 'gas', | |
FREEZE: 'solid' | |
} | |
}, | |
gas: { | |
on: { | |
CONDENSE: 'liquid' | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment