Skip to content

Instantly share code, notes, and snippets.

@zhentian-wan
Created January 19, 2020 15:03
Show Gist options
  • Save zhentian-wan/e76792d05774a38515a6f313a67b0233 to your computer and use it in GitHub Desktop.
Save zhentian-wan/e76792d05774a38515a6f313a67b0233 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const doorMachine = Machine({
id: "door",
initial: "locked",
states: {
unlocked: {
initial: "closed",
states: {
open: {
on: {
CLOSED: "closed",
LOCKED: "#locked"
}
},
closed: {
on: { OPEN: "open" }
}
}
},
locked: {
id: 'locked',
on: { UNLOCKED: "unlocked" }
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment