Skip to content

Instantly share code, notes, and snippets.

@sriraman
Created August 18, 2020 09:24
Show Gist options
  • Save sriraman/64785a39615b458cf2062d4845d7d07d to your computer and use it in GitHub Desktop.
Save sriraman/64785a39615b458cf2062d4845d7d07d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'PROFILE',
initial: 'idle',
context: {
user: null
},
states: {
idle: {
on: {
SUBMIT: 'updating'
}
},
updating: {
on: {
CANCEL: 'idle',
UPDATE_FAILED: 'error',
UPDATED: 'idle'
}
},
error: {
on: {
SUBMIT: 'updating'
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment