Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Created February 6, 2021 20:34
Show Gist options
  • Save RafalFilipek/71a4ee9f1cb576328505d39b582ac714 to your computer and use it in GitHub Desktop.
Save RafalFilipek/71a4ee9f1cb576328505d39b582ac714 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const button = Machine({
id: "button",
type: "parallel",
states: {
size: {
initial: "small",
states: {
small: {},
big: {},
},
},
variant: {
initial: "blue",
states: {
blue: {
initial: "default",
states: {
default: {
initial: "idle",
states: {
idle: {},
hover: {},
active: {},
focus: {},
}
},
disabled: {}
}
},
green: {
initial: "default",
states: {
default: {
initial: "idle",
states: {
idle: {},
hover: {},
active: {},
focus: {},
}
},
disabled: {}
}
},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment