Last active
September 9, 2020 06:55
-
-
Save NeetishPathak/9008195c41c115cd7fec2f2c5ab19501 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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