Created
January 19, 2020 17:02
-
-
Save Platekun/d8c0541e02980d2b8eca3a704402e743 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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 curviMachine = Machine({ | |
id: 'Curvi', | |
initial: 'idle', | |
context: { | |
retries: 0 | |
}, | |
states: { | |
idle: { | |
on: { | |
HACER_PROCESO_1: 'Proceso 1' | |
} | |
}, | |
'Proceso 1': { | |
initial: 'Sub Proceso 1', | |
states: { | |
'Sub Proceso 1': { | |
on: { | |
FIN_SUB_PROCESO_1: 'Sub Proceso 2' | |
} | |
}, | |
'Sub Proceso 2': { | |
} | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment