Skip to content

Instantly share code, notes, and snippets.

@shwanton
Last active August 14, 2020 04:56
Show Gist options
  • Select an option

  • Save shwanton/728f6edebac1278a1105c77956e9e777 to your computer and use it in GitHub Desktop.

Select an option

Save shwanton/728f6edebac1278a1105c77956e9e777 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: "toggle",
initial: "inactive",
states: {
inactive: { on: { TOGGLE: "active", DISABLE: "disabled" } },
active: { on: { TOGGLE: "inactive", DISABLE: "disabled" } },
disabled: { type: "final" },
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment