Skip to content

Instantly share code, notes, and snippets.

@guilherme-teodoro
Last active May 6, 2021 13:55
Show Gist options
  • Save guilherme-teodoro/82894902b202e1efce471c98909d528b to your computer and use it in GitHub Desktop.
Save guilherme-teodoro/82894902b202e1efce471c98909d528b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const wizardMachine = Machine({
initial: 'identification',
states: {
identification: {
on: {
NEXT: 'address'
}
},
address: {
on: {
NEXT: 'payment'
}
},
payment: {
on: {
NEXT: 'obrigado'
}
},
obrigado: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment