Skip to content

Instantly share code, notes, and snippets.

@afbroman
Created August 3, 2020 23:04
Show Gist options
  • Save afbroman/95148ce5798f016e7c06dc846539fc70 to your computer and use it in GitHub Desktop.
Save afbroman/95148ce5798f016e7c06dc846539fc70 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const historySwitchMachine = Machine({
id: "historySwitch",
initial: "hidden",
states: {
hidden: {
on: {
TURN_ON: "visible.hist",
},
},
visible: {
initial: "light",
states: {
light: {
on: {
SWITCH: "dark",
},
},
dark: {
on: {
SWITCH: "light",
},
},
hist: {
type: "history",
},
},
on: {
TURN_OFF: "hidden",
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment