Skip to content

Instantly share code, notes, and snippets.

@epan
Created June 18, 2020 17:28
Show Gist options
  • Save epan/f50ab53b93fdf868c9ccadea7d37590a to your computer and use it in GitHub Desktop.
Save epan/f50ab53b93fdf868c9ccadea7d37590a to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// V3.2
// Transitions, assuming no cancel, no fails, no loading (V3.2)
const simplifiedExistingMachine = Machine({
id: 'simplifiedExisting',
initial: 'closed',
context: {},
states: {
closed: {
on: {
OPEN: 'addressList'
}
},
addressList: {
on: {
SELECT_EXISTING: 'closed',
ADD_NEW: 'addressEdit'
}
},
addressEdit: {
on: {
SAVE: 'closed',
CANCEL: 'addressList'
}
},
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment