Skip to content

Instantly share code, notes, and snippets.

@magicspon
Created April 26, 2020 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magicspon/86d1a2c816dffd8c165e81a80851f490 to your computer and use it in GitHub Desktop.
Save magicspon/86d1a2c816dffd8c165e81a80851f490 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const waiting = {
on: {
BET: "playing",
RAISE: "betting",
},
}
const playing = {
on: {
FOLD: "folded",
CHECK: "waiting",
BET: "betting",
},
}
const betting = {
on: {
CALL: "waiting",
RAISE: "waiting",
FOLD: "folded",
},
}
const folded = {
type: "final",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment