Skip to content

Instantly share code, notes, and snippets.

@TristanTouchain
Created November 26, 2019 14:20
Show Gist options
  • Save TristanTouchain/127ca14e4307bd4c7af9015df90e386b to your computer and use it in GitHub Desktop.
Save TristanTouchain/127ca14e4307bd4c7af9015df90e386b 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 businessManagementFormMachine = Machine({
id: 'businessManagementForm',
initial: 'initial',
states: {
initial: {
on: {
NEXT: 'confirm',
},
},
confirm: {
on: {
SUCCESS: 'success',
ERROR: 'error',
GOBACK: 'initial',
},
},
success: {
on: {
CLOSE: 'initial',
},
},
error: {
on: {
CLOSE: 'initial',
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment