Skip to content

Instantly share code, notes, and snippets.

@darrenbutcher
Created December 17, 2020 17:46
Show Gist options
  • Save darrenbutcher/d595273e3c5495f1558e320ad6ab45c5 to your computer and use it in GitHub Desktop.
Save darrenbutcher/d595273e3c5495f1558e320ad6ab45c5 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
"id": "2. BYO",
"initial": "Black Panel",
"states": {
"Black Panel": {
"on": {
"EXPAND": "Black Panel Expanded",
"OPEN": "Pricing Modal"
}
},
"Pricing Modal": {
"on": {
"CLOSE": "Black Panel"
}
},
"Black Panel Expanded": {
"on": {
"COLLAPSE": "Black Panel"
}
}
}
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment