Skip to content

Instantly share code, notes, and snippets.

@Krutie
Last active April 21, 2021 05:41
Show Gist options
  • Save Krutie/331691dc2b885e3710bdc985c090daf5 to your computer and use it in GitHub Desktop.
Save Krutie/331691dc2b885e3710bdc985c090daf5 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// 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