Skip to content

Instantly share code, notes, and snippets.

@YouMinTW
Created September 11, 2021 19:13
Show Gist options
  • Save YouMinTW/5fb312029f962fbcafacf46f95f07a1d to your computer and use it in GitHub Desktop.
Save YouMinTW/5fb312029f962fbcafacf46f95f07a1d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const doorMachine = Machine({
// Machine identifier
id: "door",
// Initial state
initial: "關著",
// State definitions
states: {
關著: {
on: {
// 也可以用字串描述
開門: "開了"
}
},
開了: {
on: {
// 可用物件描述
關門: { target: "關著" }
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment