Skip to content

Instantly share code, notes, and snippets.

@NeetishPathak
Last active September 9, 2020 06:55
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 NeetishPathak/9008195c41c115cd7fec2f2c5ab19501 to your computer and use it in GitHub Desktop.
Save NeetishPathak/9008195c41c115cd7fec2f2c5ab19501 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 menyMachine = Machine ({
id: "bank",
initial: "welcome_scn",
states: {
welcome_scn : {
on: {
LOGIN: "logged_in_scn"
},
},
logged_in_scn : {
on: {
PAY: "payment_scn",
LOGOUT: "welcome_scn"
}
},
payment_scn : {
on: {
LOGOUT: "welcome_scn",
BACK: "logged_in_scn"
},
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment