Skip to content

Instantly share code, notes, and snippets.

@Hochul822
Created June 30, 2023 17:12
Show Gist options
  • Save Hochul822/cac47e1b8f5d7d9c1be8266c07fa0690 to your computer and use it in GitHub Desktop.
Save Hochul822/cac47e1b8f5d7d9c1be8266c07fa0690 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const door = Machine({
id: "door",
initial: "locked",
states: {
locked: {
id: "locked",
on: { UNLOCK: "unlocked" },
},
unlocked: {
initial: "closed",
states: {
closed: {
on: {
LOCK: "#door.locked",
OPEN: "opened",
},
},
opened: {
on: {
CLOSE: "closed",
},
},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment